Fix test that used an oversized int literal
This commit is contained in:
parent
7548a0d77a
commit
17e99ec57f
1 changed files with 2 additions and 2 deletions
|
|
@ -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, _); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue