about summary refs log tree commit diff
path: root/src/test/run-pass/pred-check.rs
blob: 588288cea2f4f44dea8a68bc9e0714ed33038b96 (plain)
1
2
3
4
// -*- rust -*-
pure fn f(q: int) -> bool { ret true; }

fn main() { let x = 0; check (f(x)); }