blob: 2c9815864f013fc2bf0dc4eca4c81336073423bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// check-pass
// https://github.com/rust-lang/rust/pull/112743#issuecomment-1601986883
macro_rules! m {
() => {
pub fn id() {}
};
}
mod openssl {
pub use self::evp::*;
//~^ WARNING ambiguous glob re-exports
pub use self::handwritten::*;
mod evp {
m!();
}
mod handwritten {
m!();
}
}
pub use openssl::*;
fn main() {
id();
//~^ WARNING `id` is ambiguous
//~| WARNING this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
}
|