rust/tests/ui/numbers-arithmetic/location-mul-overflow.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
97 B
Rust
Raw Normal View History

2023-11-23 16:54:06 +00:00
//@ run-fail
//@ error-pattern:location-mul-overflow.rs
fn main() {
let _: u8 = 255 * &2;
}