summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/unused-qualification-in-derive-expansion.rs
blob: c2efbf507fec88c06f79091a0d6c2f781bbd7698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass
// aux-build:add-impl.rs

#![forbid(unused_qualifications)]

#[macro_use]
extern crate add_impl;

#[derive(AddImpl)]
struct B;

fn main() {
    B.foo();
    foo();
    bar::foo();
}