summary refs log tree commit diff
path: root/src/test/ui/conditional-compilation/cfg-attr-multi-true.rs
blob: 86524e8bd28ffe32f2c33a601bbaa715abadaef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Test that cfg_attr with multiple attributes actually emits both attributes.
// This is done by emitting two attributes that cause new warnings, and then
// triggering those warnings.

// compile-pass

#![warn(unused_must_use)]

#[cfg_attr(all(), deprecated, must_use)]
struct MustUseDeprecated {}

impl MustUseDeprecated { //~ warning: use of deprecated item
    fn new() -> MustUseDeprecated { //~ warning: use of deprecated item
        MustUseDeprecated {} //~ warning: use of deprecated item
    }
}

fn main() {
    MustUseDeprecated::new(); //~ warning: use of deprecated item
    //| warning: unused `MustUseDeprecated` that must be used
}