rust/src/test/run-pass/cap-clause-not-used.rs

6 lines
128 B
Rust
Raw Normal View History

// error-pattern: warning: Captured variable 'y' not used in closure
fn main() {
let x = 5;
2012-05-04 14:33:04 -05:00
let _y = fn~(copy x) { };
}