summary refs log tree commit diff
path: root/src/test/ui/proc-macro/shadow.rs
blob: 9c49bae28a3bc78f9143080e84b4d61d7c999f0d (plain)
1
2
3
4
5
6
7
8
// aux-build:derive-a.rs

#[macro_use]
extern crate derive_a;
#[macro_use]
extern crate derive_a; //~ ERROR the name `derive_a` is defined multiple times

fn main() {}