rust/src/test/compile-fail/shadow.rs

15 lines
288 B
Rust
Raw Normal View History

// -*- rust -*-
// error-pattern:src/test/compile-fail/shadow.rs
2011-07-27 07:19:39 -05:00
fn foo(c: vec[int]) {
let a: int = 5;
let b: vec[int] = [];
2011-07-27 07:19:39 -05:00
alt none[int] {
some[int](_) { for i: int in c { log a; let a = 17; b += [a]; } }
}
}
2011-07-27 07:19:39 -05:00
tag t[T] { none; some(T); }
2011-07-27 07:19:39 -05:00
fn main() { foo([]); }