summaryrefslogtreecommitdiffstats
path: root/tests/ui/numbers-arithmetic/location-mul-overflow.rs
blob: 6dd58874874b32061b567119d0d180013caf70ef (plain)
1
2
3
4
5
6
7
// run-fail
// ignore-wasm32
// error-pattern:location-mul-overflow.rs

fn main() {
    let _: u8 = 255 * &2;
}