summaryrefslogtreecommitdiffstats
path: root/src/test/ui/derives/derive-deadlock.rs
blob: 0137b1e5bfbf3f899b61aacffa816a7287690861 (plain)
1
2
3
4
5
6
use std as derive;

#[derive(Default)] //~ ERROR cannot determine resolution for the attribute macro `derive`
struct S;

fn main() {}