]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/attribute-with-error.stderr
Rollup merge of #107470 - kadiwa4:bootstrap_cleanup, r=albertlarsan68
[rust.git] / tests / ui / proc-macro / attribute-with-error.stderr
1 error[E0308]: mismatched types
2   --> $DIR/attribute-with-error.rs:10:18
3    |
4 LL |     let a: i32 = "foo";
5    |            ---   ^^^^^ expected `i32`, found `&str`
6    |            |
7    |            expected due to this
8
9 error[E0308]: mismatched types
10   --> $DIR/attribute-with-error.rs:12:18
11    |
12 LL |     let b: i32 = "f'oo";
13    |            ---   ^^^^^^ expected `i32`, found `&str`
14    |            |
15    |            expected due to this
16
17 error[E0308]: mismatched types
18   --> $DIR/attribute-with-error.rs:25:22
19    |
20 LL |         let a: i32 = "foo";
21    |                ---   ^^^^^ expected `i32`, found `&str`
22    |                |
23    |                expected due to this
24
25 error[E0308]: mismatched types
26   --> $DIR/attribute-with-error.rs:35:22
27    |
28 LL |         let a: i32 = "foo";
29    |                ---   ^^^^^ expected `i32`, found `&str`
30    |                |
31    |                expected due to this
32
33 error: aborting due to 4 previous errors
34
35 For more information about this error, try `rustc --explain E0308`.