]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0191.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[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() {}