mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
10 lines
184 B
Rust
10 lines
184 B
Rust
// check-pass
|
|
// aux-build: ../ambiguous-1.rs
|
|
// https://github.com/rust-lang/rust/pull/113099#issuecomment-1633574396
|
|
|
|
extern crate ambiguous_1;
|
|
|
|
fn main() {
|
|
ambiguous_1::id();
|
|
}
|