rust/tests/ui/imports/ambiguous-11.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
214 B
Rust
Raw Normal View History

//@ 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() {}