rust/tests/ui/lint/dead-code/lint-dead-code-4.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
1.5 KiB
Rust
Raw Normal View History

2014-10-27 15:37:07 -07:00
#![allow(unused_variables)]
2014-06-06 00:00:29 +02:00
#![allow(non_camel_case_types)]
#![deny(dead_code)]
struct Foo {
x: usize,
b: bool, //~ ERROR: field `b` is never read
2014-06-06 00:00:29 +02:00
}
fn field_read(f: Foo) -> usize {
f.x.pow(2)
2014-06-06 00:00:29 +02:00
}
enum XYZ {
X, //~ ERROR variants `X` and `Y` are never constructed
Y {
2014-06-06 00:00:29 +02:00
a: String,
b: i32,
c: i32,
2014-06-06 00:00:29 +02:00
},
Z
}
enum ABC { //~ ERROR enum `ABC` is never used
A,
B {
a: String,
b: i32,
c: i32,
},
C
}
// ensure struct variants get warning for their fields
enum IJK {
I, //~ ERROR variants `I` and `K` are never constructed
J {
a: String,
b: i32, //~ ERROR fields `b` and `c` are never read
c: i32,
},
K
}
fn struct_variant_partial_use(b: IJK) -> String {
match b {
IJK::J { a, b: _, .. } => a,
_ => "".to_string()
}
}
2014-06-06 00:00:29 +02:00
fn field_match_in_patterns(b: XYZ) -> String {
match b {
XYZ::Y { a, b: _, .. } => a,
2014-06-06 00:00:29 +02:00
_ => "".to_string()
}
}
struct Bar {
x: usize, //~ ERROR: fields `x` and `c` are never read
2014-06-06 00:00:29 +02:00
b: bool,
c: bool,
2014-06-06 00:00:29 +02:00
_guard: ()
}
#[repr(C)]
struct Baz {
x: u32,
2014-06-06 00:00:29 +02:00
}
fn field_match_in_let(f: Bar) -> bool {
let Bar { b, c: _, .. } = f;
2014-06-06 00:00:29 +02:00
b
}
fn main() {
field_read(Foo { x: 1, b: false });
field_match_in_patterns(XYZ::Z);
struct_variant_partial_use(IJK::J { a: "".into(), b: 1, c: -1 });
field_match_in_let(Bar { x: 42, b: true, c: false, _guard: () });
2014-06-06 00:00:29 +02:00
let _ = Baz { x: 0 };
}