mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +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() {}
|