Skip to content

Commit 6d5d66f

Browse files
committed
---
yaml --- r: 12155 b: refs/heads/master c: c9102ee h: refs/heads/master i: 12153: 468ed79 12151: ab579ef v: v3
1 parent ee5fc01 commit 6d5d66f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 42f2810eca4ad1dd3d9b62e75027824f4a7caa2e
2+
refs/heads/master: c9102ee7a1e9c01e9befca44a0c0cb474fff89b4
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/src/rustc/middle/ty.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,9 @@ fn type_kind(cx: ctxt, ty: t) -> kind {
985985
param_bounds_to_kind(cx.ty_param_bounds.get(did.node))
986986
}
987987
ty_constr(t, _) { type_kind(cx, t) }
988-
_ { cx.sess.bug("bad type in type_kind"); }
988+
ty_class(_, _) { fail "FIXME"; }
989+
ty_var(_) { fail "FIXME"; }
990+
ty_self(_) { kind_noncopyable }
989991
};
990992

991993
cx.kind_cache.insert(ty, result);

0 commit comments

Comments
 (0)