]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-46101.rs
Merge commit 'cb7915b00c235e9b5861564f3be78dba330980ee' 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() {}