rust/src/test/ui/const_prop/ice-assert-fail-div-by-zero.rs

10 lines
95 B
Rust
Raw Normal View History

// check-pass
pub struct Fixed64(i64);
pub fn div(f: Fixed64) {
f.0 / 0;
}
fn main() {}