1
Fork 0
rust/tests/ui/issues/issue-22370.rs

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

7 lines
70 B
Rust
Raw Normal View History

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