rust/src/test/ui/issues/issue-22560.rs
2019-12-24 22:18:05 -08:00

15 lines
194 B
Rust

trait Add<Rhs=Self> {
type Output;
}
trait Sub<Rhs=Self> {
type Output;
}
type Test = dyn Add + Sub;
//~^ ERROR E0393
//~| ERROR E0191
//~| ERROR E0393
//~| ERROR E0225
fn main() { }