Skip to content

Commit 17e99ec

Browse files
committed
Fix test that used an oversized int literal
1 parent 7548a0d commit 17e99ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22

3-
fn f<T>(i: @int, t: T) { }
3+
fn f<T>(i: @uint, t: T) { }
44

5-
fn main() { let x = bind f::<char>(@0xdeafbeef, _); }
5+
fn main() { let x = bind f::<char>(@0xdeafbeefu, _); }

0 commit comments

Comments
 (0)