rust/src/test/ui/issue-13359.stderr

16 lines
414 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0308]: mismatched types
--> $DIR/issue-13359.rs:16:9
|
LL | foo(1*(1 as isize));
| ^^^^^^^^^^^^^^ expected i16, found isize
error[E0308]: mismatched types
--> $DIR/issue-13359.rs:20: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`.