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

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

15 lines
211 B
Rust
Raw Permalink Normal View History

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