mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 05:00:17 +00:00
10 lines
173 B
Rust
10 lines
173 B
Rust
//@ check-pass
|
|
#![allow(non_camel_case_types)]
|
|
|
|
// Issue #1761
|
|
|
|
|
|
impl foo for isize { fn foo(&self) -> isize { 10 } }
|
|
trait foo { fn foo(&self) -> isize; }
|
|
pub fn main() {}
|