summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/issue-73933-procedural-masquerade.rs
blob: 0c1c51c01a8847ddb05150051ce405afccd2e8a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// aux-build:test-macros.rs

#[macro_use]
extern crate test_macros;

#[derive(Print)]
enum ProceduralMasqueradeDummyType {
//~^ ERROR using
//~| WARN this was previously
//~| ERROR using
//~| WARN this was previously
//~| ERROR using
//~| WARN this was previously
//~| ERROR using
//~| WARN this was previously
    Input
}

fn main() {}