summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-46101.rs
blob: ab3d30d401f06c8adb2a997ec9cdb82fca1735b8 (plain)
1
2
3
4
5
6
trait Foo {}
#[derive(Foo::Anything)] //~ ERROR failed to resolve: partially resolved path in a derive macro
                         //~| ERROR failed to resolve: partially resolved path in a derive macro
struct S;

fn main() {}