mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
17 lines
158 B
Rust
17 lines
158 B
Rust
// run-pass
|
|
|
|
|
|
trait A {
|
|
fn g(&self) -> isize { 10 }
|
|
}
|
|
|
|
impl A for isize { }
|
|
|
|
fn f<T:A>(i: T) {
|
|
assert_eq!(i.g(), 10);
|
|
}
|
|
|
|
pub fn main () {
|
|
f(0);
|
|
}
|