rust/tests/ui/derives/derive-deadlock.rs

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

7 lines
134 B
Rust
Raw Normal View History

use std as derive;
#[derive(Default)] //~ ERROR cannot determine resolution for the attribute macro `derive`
struct S;
fn main() {}