]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/helper-attr-blocked-by-import-ambig.rs
Rollup merge of #64895 - davidtwco:issue-64130-async-error-definition, r=nikomatsakis
[rust.git] / src / test / ui / proc-macro / helper-attr-blocked-by-import-ambig.rs
1 // aux-build:test-macros.rs
2
3 #[macro_use(Empty)]
4 extern crate test_macros;
5 use test_macros::empty_attr as empty_helper;
6
7 #[derive(Empty)]
8 #[empty_helper] //~ ERROR `empty_helper` is ambiguous
9 struct S;
10
11 fn main() {}