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

9 lines
136 B
Rust
Raw Normal View History

2016-08-04 01:51:52 +02:00
trait Trait {
type Bar;
}
2019-05-28 14:46:13 -04:00
type Foo = dyn Trait<F=i32>; //~ ERROR E0220
//~| ERROR E0191
2016-08-04 01:51:52 +02:00
fn main() {
}