rustc/tests/ui/error-codes/E0437.rs
2023-08-02 10:33:26 +02:00

9 lines
88 B
Rust

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