rust/src/test/ui/error-codes/E0437.rs
2018-12-25 21:08:33 -07:00

9 lines
88 B
Rust

trait Foo {}
impl Foo for i32 {
type Bar = bool; //~ ERROR E0437
}
fn main () {
}