mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
9 lines
271 B
Rust
9 lines
271 B
Rust
|
// RFC 401 test extracted into distinct file. This is because some the
|
||
|
// change to suppress "derived" errors wound up suppressing this error
|
||
|
// message, since the fallback for `3` doesn't occur.
|
||
|
|
||
|
fn main() {
|
||
|
let _ = 3 as bool;
|
||
|
//~^ ERROR cannot cast as `bool`
|
||
|
}
|