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

fn main() {
    let _: u8 = 255 + &1;
}