]> git.proxmox.com Git - rustc.git/blame - src/test/ui/traits/test.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / traits / test.rs
CommitLineData
0731742a 1#[allow(non_camel_case_types)]
223e47cc
LB
2trait foo { fn foo(&self); }
3
1a4d82fc 4impl isize for usize { fn foo(&self) {} } //~ ERROR trait
223e47cc
LB
5
6fn main() {}