mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
253 B
Rust
14 lines
253 B
Rust
// The error here is strictly due to orphan rules; the impl here
|
|
// generalizes the one upstream
|
|
|
|
// aux-build:trait_impl_conflict.rs
|
|
|
|
extern crate trait_impl_conflict;
|
|
use trait_impl_conflict::Foo;
|
|
|
|
impl<A> Foo for A { //~ ERROR E0210
|
|
}
|
|
|
|
fn main() {
|
|
}
|