1
Fork 0
rust/src/test/ui/proc-macro/nested-item-spans.stderr

16 lines
439 B
Text
Raw Normal View History

error[E0308]: mismatched types
--> $DIR/nested-item-spans.rs:9:22
|
2019-03-09 15:03:44 +03:00
LL | let x: u32 = "x";
| ^^^ expected `u32`, found `&str`
error[E0308]: mismatched types
--> $DIR/nested-item-spans.rs:18:22
|
2019-03-09 15:03:44 +03:00
LL | let x: u32 = "x";
| ^^^ expected `u32`, found `&str`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.