mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 03:38:29 +00:00
15 lines
214 B
Rust
15 lines
214 B
Rust
![]() |
//@ aux-build: ambiguous-11-extern.rs
|
||
|
|
||
|
extern crate ambiguous_11_extern;
|
||
|
|
||
|
mod s {
|
||
|
pub trait Error {}
|
||
|
}
|
||
|
|
||
|
use s::*;
|
||
|
use ambiguous_11_extern::*;
|
||
|
fn a<E: Error>(_: E) {}
|
||
|
//~^ ERROR `Error` is ambiguous
|
||
|
|
||
|
fn main() {}
|