rust/tests/ui/error-codes/E0393.rs

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 14:44:49 -05:00
trait A<T=Self> {}
2019-05-28 13:46:13 -05:00
fn together_we_will_rule_the_galaxy(son: &dyn A) {}
2016-08-29 09:49:16 -05:00
//~^ ERROR E0393
2016-08-06 14:44:49 -05:00
fn main() {
}