diff options
| author | Lindsey Kuper <lindsey@rockstargirl.org> | 2012-06-21 15:38:21 -0700 |
|---|---|---|
| committer | Lindsey Kuper <lindsey@rockstargirl.org> | 2012-06-21 16:19:04 -0700 |
| commit | 57101780811490fa759ed1dca310c405d28c0a72 (patch) | |
| tree | 4b9f5dff82e3c993b03c59559d3584a908378b7b /src | |
| parent | 0fe9c0a9d11e64f556fcdee8296d7ae43c7fcd35 (diff) | |
| download | rust-57101780811490fa759ed1dca310c405d28c0a72.tar.gz rust-57101780811490fa759ed1dca310c405d28c0a72.zip | |
Adding `i` suffixes so cfail tests keep failing after suffix inference
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/compile-fail/binop-logic-int.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/binop-logic-int.rs b/src/test/compile-fail/binop-logic-int.rs index ef8643bd7b4..ffa812c8b71 100644 --- a/src/test/compile-fail/binop-logic-int.rs +++ b/src/test/compile-fail/binop-logic-int.rs @@ -1,3 +1,3 @@ // error-pattern:&& cannot be applied to type `int` -fn main() { let x = 1 && 2; } +fn main() { let x = 1i && 2i; } |
