summaryrefslogtreecommitdiffstats
path: root/tests/ui/cast/cast-rfc0401-2.rs
blob: 70604a587ea1fa43c926b3ada5ead8713f29dec8 (plain)
1
2
3
4
5
6
7
8
// 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 `i32` as `bool`
}