diff options
| author | Marijn Haverbeke <marijnh@gmail.com> | 2011-12-07 22:10:56 +0100 |
|---|---|---|
| committer | Marijn Haverbeke <marijnh@gmail.com> | 2011-12-07 22:10:56 +0100 |
| commit | 17e99ec57fe8b4b9de24933728db1737e846a7c2 (patch) | |
| tree | f4aac44f619237a061eb14f5c53f760f84df811e | |
| parent | 7548a0d77a7ebc2950421e68dfb06f6a06c58202 (diff) | |
Fix test that used an oversized int literal
| -rw-r--r-- | src/test/run-pass/drop-parametric-closure-with-bound-box.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/drop-parametric-closure-with-bound-box.rs b/src/test/run-pass/drop-parametric-closure-with-bound-box.rs index ce270d7b06b..0671f617850 100644 --- a/src/test/run-pass/drop-parametric-closure-with-bound-box.rs +++ b/src/test/run-pass/drop-parametric-closure-with-bound-box.rs @@ -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, _); } |
