correct test to reference right value

This commit is contained in:
Niko Matsakis 2012-01-04 16:04:37 -08:00
parent f832edc369
commit afe792496a

View File

@ -9,5 +9,5 @@ fn compute1() -> float {
fn main() {
let x = compute1();
log(debug, x);
assert(y == -4f);
assert(x == -4f);
}