aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/arithmetic-interference.rs
blob: 588148bb81fbfc1eb8ccd6607f745fdbf7aa5e56 (plain) (blame)
1
2
3
4
5
6
7
// Testcase for issue #131.

fn main() -> () {
  let int a = 10;
  log a;
  check (a * (a - 1) == 90);
}