2013-12-08 01:55:27 -06:00
|
|
|
// Copyright 2013 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-03-21 20:05:05 -05:00
|
|
|
#![no_std]
|
|
|
|
#![allow(unused_variable)]
|
|
|
|
#![allow(non_camel_case_types)]
|
2014-09-12 20:55:37 -05:00
|
|
|
#![allow(non_uppercase_statics)]
|
2014-03-21 20:05:05 -05:00
|
|
|
#![deny(dead_code)]
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2014-03-21 20:05:05 -05:00
|
|
|
#![crate_type="lib"]
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2014-10-06 23:16:35 -05:00
|
|
|
extern crate core;
|
2014-04-02 19:38:45 -05:00
|
|
|
|
2014-10-06 23:16:35 -05:00
|
|
|
pub use foo2::Bar2;
|
2014-04-02 19:38:45 -05:00
|
|
|
|
2013-12-08 01:55:27 -06:00
|
|
|
mod foo {
|
2014-09-20 07:08:10 -05:00
|
|
|
pub struct Bar; //~ ERROR: struct is never used
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
mod foo2 {
|
|
|
|
pub struct Bar2;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub static pub_static: int = 0;
|
2014-09-20 07:08:10 -05:00
|
|
|
static priv_static: int = 0; //~ ERROR: static item is never used
|
2014-10-06 23:16:35 -05:00
|
|
|
const used_static: int = 0;
|
2013-12-08 01:55:27 -06:00
|
|
|
pub static used_static2: int = used_static;
|
2014-10-06 23:16:35 -05:00
|
|
|
const USED_STATIC: int = 0;
|
|
|
|
const STATIC_USED_IN_ENUM_DISCRIMINANT: int = 10;
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2014-10-10 10:31:13 -05:00
|
|
|
pub const pub_const: int = 0;
|
|
|
|
const priv_const: int = 0; //~ ERROR: constant item is never used
|
|
|
|
const used_const: int = 0;
|
|
|
|
pub const used_const2: int = used_const;
|
2014-10-10 10:49:12 -05:00
|
|
|
const USED_CONST: int = 1;
|
|
|
|
const CONST_USED_IN_ENUM_DISCRIMINANT: int = 11;
|
2014-10-10 10:31:13 -05:00
|
|
|
|
2014-06-25 14:47:34 -05:00
|
|
|
pub type typ = *const UsedStruct4;
|
2014-06-22 12:53:56 -05:00
|
|
|
pub struct PubStruct;
|
2014-09-20 07:08:10 -05:00
|
|
|
struct PrivStruct; //~ ERROR: struct is never used
|
2014-06-06 08:51:42 -05:00
|
|
|
struct UsedStruct1 {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
x: int
|
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
struct UsedStruct2(int);
|
|
|
|
struct UsedStruct3;
|
|
|
|
struct UsedStruct4;
|
|
|
|
// this struct is never used directly, but its method is, so we don't want
|
|
|
|
// to warn it
|
|
|
|
struct SemiUsedStruct;
|
|
|
|
impl SemiUsedStruct {
|
|
|
|
fn la_la_la() {}
|
|
|
|
}
|
2013-12-16 01:15:00 -06:00
|
|
|
struct StructUsedAsField;
|
2014-09-19 14:30:07 -05:00
|
|
|
pub struct StructUsedInEnum;
|
2013-12-16 17:01:36 -06:00
|
|
|
struct StructUsedInGeneric;
|
2013-12-16 01:15:00 -06:00
|
|
|
pub struct PubStruct2 {
|
2014-06-06 08:51:42 -05:00
|
|
|
#[allow(dead_code)]
|
2014-06-25 14:47:34 -05:00
|
|
|
struct_used_as_field: *const StructUsedAsField
|
2013-12-16 01:15:00 -06:00
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
|
|
|
|
pub enum pub_enum { foo1, bar1 }
|
2014-06-25 14:47:34 -05:00
|
|
|
pub enum pub_enum2 { a(*const StructUsedInEnum) }
|
2014-10-10 10:49:12 -05:00
|
|
|
pub enum pub_enum3 {
|
|
|
|
Foo = STATIC_USED_IN_ENUM_DISCRIMINANT,
|
|
|
|
Bar = CONST_USED_IN_ENUM_DISCRIMINANT,
|
|
|
|
}
|
2014-09-20 06:26:10 -05:00
|
|
|
|
2014-09-20 07:08:10 -05:00
|
|
|
enum priv_enum { foo2, bar2 } //~ ERROR: enum is never used
|
2014-09-20 06:26:10 -05:00
|
|
|
enum used_enum {
|
|
|
|
foo3,
|
2014-09-20 07:08:10 -05:00
|
|
|
bar3 //~ ERROR variant is never used
|
2014-09-20 06:26:10 -05:00
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2013-12-16 17:01:36 -06:00
|
|
|
fn f<T>() {}
|
|
|
|
|
2013-12-11 19:49:46 -06:00
|
|
|
pub fn pub_fn() {
|
|
|
|
used_fn();
|
|
|
|
let used_struct1 = UsedStruct1 { x: 1 };
|
|
|
|
let used_struct2 = UsedStruct2(1);
|
|
|
|
let used_struct3 = UsedStruct3;
|
|
|
|
let e = foo3;
|
|
|
|
SemiUsedStruct::la_la_la();
|
|
|
|
|
2014-06-27 14:30:25 -05:00
|
|
|
let i = 1i;
|
2013-12-11 19:49:46 -06:00
|
|
|
match i {
|
|
|
|
USED_STATIC => (),
|
2014-10-10 10:49:12 -05:00
|
|
|
USED_CONST => (),
|
2013-12-11 19:49:46 -06:00
|
|
|
_ => ()
|
|
|
|
}
|
2013-12-16 17:01:36 -06:00
|
|
|
f::<StructUsedInGeneric>();
|
2013-12-11 19:49:46 -06:00
|
|
|
}
|
2014-09-20 07:08:10 -05:00
|
|
|
fn priv_fn() { //~ ERROR: function is never used
|
2013-12-11 19:49:46 -06:00
|
|
|
let unused_struct = PrivStruct;
|
|
|
|
}
|
|
|
|
fn used_fn() {}
|
|
|
|
|
2014-09-20 07:08:10 -05:00
|
|
|
fn foo() { //~ ERROR: function is never used
|
2013-12-08 01:55:27 -06:00
|
|
|
bar();
|
|
|
|
let unused_enum = foo2;
|
|
|
|
}
|
|
|
|
|
2014-09-20 07:08:10 -05:00
|
|
|
fn bar() { //~ ERROR: function is never used
|
2013-12-08 01:55:27 -06:00
|
|
|
foo();
|
|
|
|
}
|
2014-01-11 02:21:53 -06:00
|
|
|
|
|
|
|
// Code with #[allow(dead_code)] should be marked live (and thus anything it
|
|
|
|
// calls is marked live)
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn g() { h(); }
|
|
|
|
fn h() {}
|