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

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-03 18:51:52 -05:00
trait Trait {
type Bar;
}
2019-05-28 13:46:13 -05:00
type Foo = dyn Trait<F=i32>; //~ ERROR E0220
//~| ERROR E0191
2016-08-03 18:51:52 -05:00
fn main() {
}