blob: 897b990c1681af960c5a53d34a0b0556d67ccc2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//@ 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() {}
|