mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
7 lines
230 B
Rust
7 lines
230 B
Rust
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() {}
|