1
Fork 0
rust/src/test/ui/error-codes/E0393.rs

8 lines
100 B
Rust
Raw Normal View History

2016-08-06 21:44:49 +02:00
trait A<T=Self> {}
2016-08-29 22:49:16 +08:00
fn together_we_will_rule_the_galaxy(son: &A) {}
//~^ ERROR E0393
2016-08-06 21:44:49 +02:00
fn main() {
}