]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pptypedef.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / pptypedef.stderr
1 error[E0308]: mismatched types
2   --> $DIR/pptypedef.rs:4:37
3    |
4 LL |     let_in(3u32, |i| { assert!(i == 3i32); });
5    |                                     ^^^^ expected u32, found i32
6
7 error[E0308]: mismatched types
8   --> $DIR/pptypedef.rs:8:37
9    |
10 LL |     let_in(3i32, |i| { assert!(i == 3u32); });
11    |                                     ^^^^ expected i32, found u32
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0308`.