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

8 lines
104 B
Rust
Raw Normal View History

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