rust/tests/ui/objects-coerce-freeze-borrored.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
657 B
Rust
Raw Normal View History

//@ run-pass
// Test that we can coerce an `@Object` to an `&Object`
trait Foo {
fn foo(&self) -> usize;
fn bar(&mut self) -> usize;
}
impl Foo for usize {
fn foo(&self) -> usize {
*self
}
fn bar(&mut self) -> usize {
*self += 1;
*self
}
}
2019-05-28 18:47:21 +00:00
fn do_it_mut(obj: &mut dyn Foo) {
let x = obj.bar();
let y = obj.foo();
assert_eq!(x, y);
do_it_imm(obj, y);
}
2019-05-28 18:47:21 +00:00
fn do_it_imm(obj: &dyn Foo, v: usize) {
let y = obj.foo();
assert_eq!(v, y);
}
pub fn main() {
let mut x: usize = 22;
2019-05-28 18:47:21 +00:00
let obj = &mut x as &mut dyn Foo;
do_it_mut(obj);
do_it_imm(obj, 23);
do_it_mut(obj);
}