summary refs log tree commit diff
path: root/tests/ui/proc-macro/shadow.rs
blob: 22aecb7c05fc8f6292332fad726687b58f226888 (plain)
1
2
3
4
5
6
7
8
//@ aux-build:test-macros.rs

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

fn main() {}