]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0220.rs
Rollup merge of #59056 - scottmcm:even-fewer-lifetimes, r=sfackler
[rust.git] / src / test / ui / error-codes / E0220.rs
1 trait Trait {
2     type Bar;
3 }
4
5 type Foo = Trait<F=i32>; //~ ERROR E0220
6                          //~| ERROR E0191
7 fn main() {
8 }