rust/src/test/compile-fail/liveness-unused.rs

105 lines
2.0 KiB
Rust
Raw Normal View History

2014-02-05 16:33:10 -06:00
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2014-10-27 17:37:07 -05:00
#![deny(unused_variables)]
#![deny(unused_assignments)]
#![allow(dead_code, non_camel_case_types)]
fn f1(x: int) {
//~^ ERROR unused variable: `x`
}
fn f1b(x: &mut int) {
//~^ ERROR unused variable: `x`
}
2014-10-27 17:37:07 -05:00
#[allow(unused_variables)]
fn f1c(x: int) {}
fn f1d() {
let x: int;
//~^ ERROR unused variable: `x`
}
fn f2() {
let x = 3i;
//~^ ERROR unused variable: `x`
}
fn f3() {
let mut x = 3i;
//~^ ERROR variable `x` is assigned to, but never used
x += 4i;
//~^ ERROR value assigned to `x` is never read
}
fn f3b() {
let mut z = 3i;
//~^ ERROR variable `z` is assigned to, but never used
loop {
z += 4i;
}
}
2014-10-27 17:37:07 -05:00
#[allow(unused_variables)]
fn f3c() {
let mut z = 3i;
loop { z += 4i; }
}
2014-10-27 17:37:07 -05:00
#[allow(unused_variables)]
#[allow(unused_assignments)]
fn f3d() {
let mut x = 3i;
x += 4i;
}
fn f4() {
match Some(3i) {
2012-08-20 14:23:37 -05:00
Some(i) => {
//~^ ERROR unused variable: `i`
}
2012-08-20 14:23:37 -05:00
None => {}
}
}
enum tri {
a(int), b(int), c(int)
}
fn f4b() -> int {
match tri::a(3i) {
tri::a(i) | tri::b(i) | tri::c(i) => {
i
}
}
}
fn f5a() {
for x in range(1i, 10) { }
//~^ ERROR unused variable: `x`
}
fn f5b() {
for (x, _) in [1i, 2, 3].iter().enumerate() { }
//~^ ERROR unused variable: `x`
}
fn f5c() {
for (_, x) in [1i, 2, 3].iter().enumerate() {
//~^ ERROR unused variable: `x`
continue;
std::os::set_exit_status(*x); //~ WARNING unreachable statement
}
}
fn main() {
}