2014-06-05 17:00:29 -05: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-10-27 17:37:07 -05:00
|
|
|
#![allow(unused_variables)]
|
2014-06-05 17:00:29 -05:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![deny(dead_code)]
|
|
|
|
|
|
|
|
struct Foo {
|
2015-01-08 05:02:42 -06:00
|
|
|
x: usize,
|
2014-09-20 07:08:10 -05:00
|
|
|
b: bool, //~ ERROR: struct field is never used
|
2014-06-05 17:00:29 -05:00
|
|
|
}
|
|
|
|
|
2015-01-08 05:02:42 -06:00
|
|
|
fn field_read(f: Foo) -> usize {
|
2014-11-17 08:12:54 -06:00
|
|
|
f.x.pow(2)
|
2014-06-05 17:00:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
enum XYZ {
|
2014-09-20 06:26:10 -05:00
|
|
|
X, //~ ERROR variant is never used
|
|
|
|
Y { //~ ERROR variant is never used
|
2014-06-05 17:00:29 -05:00
|
|
|
a: String,
|
2015-11-07 16:07:13 -06:00
|
|
|
b: i32,
|
|
|
|
c: i32,
|
2014-06-05 17:00:29 -05:00
|
|
|
},
|
|
|
|
Z
|
|
|
|
}
|
|
|
|
|
2015-11-07 16:07:13 -06:00
|
|
|
enum ABC { //~ ERROR enum is never used
|
|
|
|
A,
|
|
|
|
B {
|
|
|
|
a: String,
|
|
|
|
b: i32,
|
|
|
|
c: i32,
|
|
|
|
},
|
|
|
|
C
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure struct variants get warning for their fields
|
|
|
|
enum IJK {
|
|
|
|
I, //~ ERROR variant is never used
|
|
|
|
J {
|
|
|
|
a: String,
|
|
|
|
b: i32, //~ ERROR struct field is never used
|
|
|
|
c: i32, //~ ERROR struct field is never used
|
|
|
|
},
|
|
|
|
K //~ ERROR variant is never used
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
fn struct_variant_partial_use(b: IJK) -> String {
|
|
|
|
match b {
|
|
|
|
IJK::J { a, b: _, .. } => a,
|
|
|
|
_ => "".to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-05 17:00:29 -05:00
|
|
|
fn field_match_in_patterns(b: XYZ) -> String {
|
|
|
|
match b {
|
2015-06-22 07:36:14 -05:00
|
|
|
XYZ::Y { a, b: _, .. } => a,
|
2014-06-05 17:00:29 -05:00
|
|
|
_ => "".to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar {
|
2015-01-08 05:02:42 -06:00
|
|
|
x: usize, //~ ERROR: struct field is never used
|
2014-06-05 17:00:29 -05:00
|
|
|
b: bool,
|
2015-06-22 07:36:14 -05:00
|
|
|
c: bool, //~ ERROR: struct field is never used
|
2014-06-05 17:00:29 -05:00
|
|
|
_guard: ()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
struct Baz {
|
2015-06-10 15:33:52 -05:00
|
|
|
x: u32,
|
2014-06-05 17:00:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn field_match_in_let(f: Bar) -> bool {
|
2015-06-22 07:36:14 -05:00
|
|
|
let Bar { b, c: _, .. } = f;
|
2014-06-05 17:00:29 -05:00
|
|
|
b
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-06-10 15:33:52 -05:00
|
|
|
field_read(Foo { x: 1, b: false });
|
2014-11-06 02:05:53 -06:00
|
|
|
field_match_in_patterns(XYZ::Z);
|
2015-11-07 16:07:13 -06:00
|
|
|
struct_variant_partial_use(IJK::J { a: "".into(), b: 1, c: -1 });
|
2015-06-22 07:36:14 -05:00
|
|
|
field_match_in_let(Bar { x: 42, b: true, c: false, _guard: () });
|
2014-06-05 17:00:29 -05:00
|
|
|
let _ = Baz { x: 0 };
|
|
|
|
}
|