]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/issue-73933-procedural-masquerade.rs
normalize stderr
[rust.git] / src / test / ui / proc-macro / issue-73933-procedural-masquerade.rs
1 // aux-build:test-macros.rs
2
3 #[macro_use]
4 extern crate test_macros;
5
6 #[derive(Print)]
7 enum ProceduralMasqueradeDummyType {
8 //~^ ERROR using
9 //~| WARN this was previously
10 //~| ERROR using
11 //~| WARN this was previously
12 //~| ERROR using
13 //~| WARN this was previously
14 //~| ERROR using
15 //~| WARN this was previously
16     Input
17 }
18
19 fn main() {}