blob: dc9c2ffaa6fadf472bb5592e69939b9732bc006d [file] [log] [blame] [edit]
//@ run-pass
struct Foo {
a: u32
}
impl Foo {
fn x(&mut self) {
self.a = 5;
}
}
const FUNC: &'static dyn Fn(&mut Foo) -> () = &Foo::x;
fn main() {
let mut foo = Foo { a: 137 };
FUNC(&mut foo);
assert_eq!(foo.a, 5);
}