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