summary refs log tree commit diff
path: root/src/test/run-pass/constraint-prop.rs
blob: f15c0f4121d77000c6dfa1f2c39c6edd61f63efd (plain)
1
2
3
4
5
6
7
8
9
10
11
use std;
import str::*;
import uint::*;

fn main() {
    let a: uint = 1u;
    let b: uint = 4u;
    check (le(a, b));
    let c = b;
    log(debug, safe_slice("kitties", a, c));
}