blob: 3d0af2b37b761822698171e05c3cb95fb8b4660c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// { dg-additional-options "-frust-name-resolution-2.0" }
pub mod foo {
pub macro bar() {}
}
use foo::bar;
use foo::bar; // { dg-error ".bar. defined multiple times" }
fn main() {
bar!();
}
|