about summary refs log tree commit diff
path: root/tests/ui/hygiene/cross-crate-redefine.rs
blob: e42c5e3de064198de8a0c900083dfa00714a0a0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Check that items with identical `SyntaxContext` conflict even when that
// context involves a mark from another crate.

//@ aux-build:use_by_macro.rs

extern crate use_by_macro;

use use_by_macro::*;

my_struct!(define);
//~^ ERROR the name `MyStruct` is defined multiple times
my_struct!(define);

fn main() {}