]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/issue-73933-procedural-masquerade.rs
Rollup merge of #106591 - Ezrashaw:attempted-integer-identifer, r=Estebank
[rust.git] / tests / ui / proc-macro / issue-73933-procedural-masquerade.rs
1 // aux-build:test-macros.rs
2 // check-pass
3
4 #[macro_use]
5 extern crate test_macros;
6
7 #[derive(Print)]
8 enum ProceduralMasqueradeDummyType {
9     Input
10 }
11
12 fn main() {}