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

105 lines
1.9 KiB
Rust

// 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.
#![deny(unused_variable)]
#![deny(dead_assignment)]
#![allow(dead_code, non_camel_case_types)]
fn f1(x: int) {
//~^ ERROR unused variable: `x`
}
fn f1b(x: &mut int) {
//~^ ERROR unused variable: `x`
}
#[allow(unused_variable)]
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;
}
}
#[allow(unused_variable)]
fn f3c() {
let mut z = 3i;
loop { z += 4i; }
}
#[allow(unused_variable)]
#[allow(dead_assignment)]
fn f3d() {
let mut x = 3i;
x += 4i;
}
fn f4() {
match Some(3i) {
Some(i) => {
//~^ ERROR unused variable: `i`
}
None => {}
}
}
enum tri {
a(int), b(int), c(int)
}
fn f4b() -> int {
match a(3i) {
a(i) | b(i) | 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() {
}