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

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