about summary refs log tree commit diff
path: root/tests/ui/numbers-arithmetic/location-mul-overflow.rs
blob: 0a00d3beaa78605a4848cc3e3c8fd2160b2fc566 (plain)
1
2
3
4
5
6
//@ run-fail
//@ error-pattern:location-mul-overflow.rs

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