]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-46101.rs
Merge commit '0e87918536b9833bbc6c683d1f9d51ee2bf03ef1' into clippyup
[rust.git] / src / test / ui / issues / issue-46101.rs
1 #![feature(use_extern_macros)]
2 trait Foo {}
3 #[derive(Foo::Anything)] //~ ERROR failed to resolve: partially resolved path in a derive macro
4                          //~| ERROR failed to resolve: partially resolved path in a derive macro
5 struct S;
6
7 fn main() {}