diff options
| author | Havvy (Ryan Scheel) <ryan.havvy@gmail.com> | 2018-09-10 15:06:49 -0700 |
|---|---|---|
| committer | Havvy (Ryan Scheel) <ryan.havvy@gmail.com> | 2018-10-05 17:29:17 -0700 |
| commit | 1a867dc346a0b9ea5abd8a8504f1908f42ff2dd2 (patch) | |
| tree | df5117610979478bd9f02f14b9eb360c3940b1fa /src/test/ui/conditional-compilation/cfg-attr-multi-false.rs | |
| parent | 9568ec6bef514515b14c78c7492186d509048968 (diff) | |
| download | rust-1a867dc346a0b9ea5abd8a8504f1908f42ff2dd2.tar.gz rust-1a867dc346a0b9ea5abd8a8504f1908f42ff2dd2.zip | |
cfg_attr_multi: Basic implementation
Does not implement the warning or a feature flag.
Diffstat (limited to 'src/test/ui/conditional-compilation/cfg-attr-multi-false.rs')
| -rw-r--r-- | src/test/ui/conditional-compilation/cfg-attr-multi-false.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/conditional-compilation/cfg-attr-multi-false.rs b/src/test/ui/conditional-compilation/cfg-attr-multi-false.rs new file mode 100644 index 00000000000..ff7a47e0839 --- /dev/null +++ b/src/test/ui/conditional-compilation/cfg-attr-multi-false.rs @@ -0,0 +1,19 @@ +// Test that cfg_attr doesn't emit any attributes when the +// configuation variable is false. This mirrors `cfg-attr-multi-true.rs` + +// compile-pass + +#![warn(unused_must_use)] + +#[cfg_attr(any(), deprecated, must_use)] +struct Struct {} + +impl Struct { + fn new() -> Struct { + Struct {} + } +} + +fn main() { + Struct::new(); +} |
