rustc/tests/ui/traits/test.rs
2023-07-27 22:48:29 +08:00

7 lines
133 B
Rust

#[allow(non_camel_case_types)]
trait foo { fn foo(&self); }
impl isize for usize { fn foo(&self) {} } //~ ERROR trait
fn main() {}