blob: edb6efc770096117c08b8bb0bc9a9d48e80baa0d [file] [edit]
//! Regression test for https://github.com/rust-lang/rust/issues/25757
//@ 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);
}