blob: 7dbf93ada5e5b9a948379009ec9195959e489831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// aux-build:complex_impl_support.rs
extern crate complex_impl_support;
use complex_impl_support::{External, M};
struct Q;
impl<R> External for (Q, R) {} //~ ERROR only traits defined
//~^ ERROR conflicting implementations of trait
fn main() {}
|