blob: 5f2d5e80243fe62a76362679ffc08cb042142daf [file] [log] [blame]
// check-pass
pub struct Fixed64(i64);
pub fn div(f: Fixed64) {
f.0 / 0;
}
fn main() {}