]> git.lizzy.rs Git - rust.git/blob - src/test/ui/custom-derive/helper-attr-blocked-by-import-ambig.rs
Auto merge of #55707 - GuillaumeGomez:file-sidebar, r=QuietMisdreavus
[rust.git] / src / test / ui / custom-derive / helper-attr-blocked-by-import-ambig.rs
1 // aux-build:plugin.rs
2
3 #[macro_use(WithHelper)]
4 extern crate plugin;
5
6 use plugin::helper;
7
8 #[derive(WithHelper)]
9 #[helper] //~ ERROR `helper` is ambiguous
10 struct S;
11
12 fn main() {}