]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/nested-item-spans.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / proc-macro / nested-item-spans.stderr
1 error[E0308]: mismatched types
2   --> $DIR/nested-item-spans.rs:9:22
3    |
4 LL |         let x: u32 = "x";
5    |                ---   ^^^ expected `u32`, found `&str`
6    |                |
7    |                expected due to this
8
9 error[E0308]: mismatched types
10   --> $DIR/nested-item-spans.rs:18:22
11    |
12 LL |         let x: u32 = "x";
13    |                ---   ^^^ expected `u32`, found `&str`
14    |                |
15    |                expected due to this
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0308`.