Fix test that used an oversized int literal

This commit is contained in:
Marijn Haverbeke 2011-12-07 22:10:56 +01:00
parent 7548a0d77a
commit 17e99ec57f
1 changed files with 2 additions and 2 deletions

View File

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