mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
20 lines
316 B
Rust
20 lines
316 B
Rust
// run-pass
|
|
#![allow(unused_variables)]
|
|
|
|
|
|
trait A<T> {
|
|
fn g(&self, x: usize) -> usize { x }
|
|
fn h(&self, x: T) { }
|
|
}
|
|
|
|
impl<T> A<T> for isize { }
|
|
|
|
fn f<T, V: A<T>>(i: V, j: usize) -> usize {
|
|
i.g(j)
|
|
}
|
|
|
|
pub fn main () {
|
|
assert_eq!(f::<f64, isize>(0, 2), 2);
|
|
assert_eq!(f::<usize, isize>(0, 2), 2);
|
|
}
|