mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-23 07:39:42 +00:00
7 lines
133 B
Rust
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() {}
|