summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/ambiguous-11.rs
blob: 0565b9d22acdbcd0a324c3c357839d3b4ee9c5c9 (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() {}