]> git.lizzy.rs Git - rust.git/blob - src/test/ui/numbers-arithmetic/arith-0.rs
Rollup merge of #61207 - taiki-e:arbitrary_self_types-lifetime-elision-2, r=Centril
[rust.git] / src / test / ui / numbers-arithmetic / arith-0.rs
1 // run-pass
2
3
4 pub fn main() {
5     let a: isize = 10;
6     println!("{}", a);
7     assert_eq!(a * (a - 1), 90);
8 }