2011-06-28 18:29:37 -05:00
|
|
|
// tests that the pred in a claim isn't actually eval'd
|
|
|
|
use std;
|
|
|
|
import std::str::*;
|
|
|
|
import std::uint::*;
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
pred fails(a: uint) -> bool { fail; }
|
2011-06-28 18:29:37 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { let b: uint = 4u; claim (fails(b)); }
|