]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0191.rs
Rollup merge of #106940 - oli-obk:tait_error, r=compiler-errors
[rust.git] / tests / ui / error-codes / E0191.rs
1 trait Trait {
2     type Bar;
3 }
4
5 type Foo = dyn Trait; //~ ERROR E0191
6
7 fn main() {}