10 lines
95 B
Rust
10 lines
95 B
Rust
|
// check-pass
|
||
|
|
||
|
pub struct Fixed64(i64);
|
||
|
|
||
|
pub fn div(f: Fixed64) {
|
||
|
f.0 / 0;
|
||
|
}
|
||
|
|
||
|
fn main() {}
|