rust/tests/ui/issues/issue-46101.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
230 B
Rust
Raw Normal View History

2019-02-25 23:55:25 +00:00
trait Foo {}
#[derive(Foo::Anything)] //~ ERROR failed to resolve: partially resolved path in a derive macro
2020-01-08 17:02:10 +00:00
//~| ERROR failed to resolve: partially resolved path in a derive macro
2019-02-25 23:55:25 +00:00
struct S;
fn main() {}