rust/src/test/ui/issues/issue-13359.stderr
2018-12-25 21:08:33 -07:00

16 lines
413 B
Plaintext

error[E0308]: mismatched types
--> $DIR/issue-13359.rs:6:9
|
LL | foo(1*(1 as isize));
| ^^^^^^^^^^^^^^ expected i16, found isize
error[E0308]: mismatched types
--> $DIR/issue-13359.rs:10:9
|
LL | bar(1*(1 as usize));
| ^^^^^^^^^^^^^^ expected u32, found usize
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.