rust/src/test/ui/keyword/keyword-true-as-identifier.stderr

13 lines
362 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/keyword-true-as-identifier.rs:2:9
2018-08-08 07:28:26 -05:00
|
LL | let true = 22; //~ error: mismatched types
| ^^^^ expected integer, found bool
2018-08-08 07:28:26 -05:00
|
= note: expected type `{integer}`
found type `bool`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.