blob: ec04722f9c9fbf5e34a42617479937fdee7ff30c [file] [log] [blame] [edit]
//@ run-pass
trait Foo<T> {
fn get(&self) -> T;
}
struct S {
x: isize
}
impl Foo<isize> for S {
fn get(&self) -> isize {
self.x
}
}
pub fn main() {
let x = Box::new(S { x: 1 });
let y = x as Box<dyn Foo<isize>>;
assert_eq!(y.get(), 1);
}