mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
211 B
Rust
15 lines
211 B
Rust
//@ aux-build: ambiguous-8-extern.rs
|
|
|
|
extern crate ambiguous_8_extern;
|
|
|
|
mod s {
|
|
pub trait Error {}
|
|
}
|
|
|
|
use s::*;
|
|
use ambiguous_8_extern::*;
|
|
fn a<E: Error>(_: E) {}
|
|
//~^ ERROR `Error` is ambiguous
|
|
|
|
fn main() {}
|