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