rust/src/test/ui/error-codes/E0191.rs

8 lines
79 B
Rust
Raw Normal View History

2016-06-01 09:30:13 -05:00
trait Trait {
type Bar;
}
type Foo = Trait; //~ ERROR E0191
2018-11-03 23:47:10 -05:00
fn main() {}