mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
303 B
Rust
18 lines
303 B
Rust
// run-pass
|
|
// regression test for issue #41498.
|
|
|
|
struct S;
|
|
impl S {
|
|
fn mutate(&mut self) {}
|
|
}
|
|
|
|
fn call_and_ref<T, F: FnOnce() -> T>(x: &mut Option<T>, f: F) -> &mut T {
|
|
*x = Some(f());
|
|
x.as_mut().unwrap()
|
|
}
|
|
|
|
fn main() {
|
|
let mut n = None;
|
|
call_and_ref(&mut n, || [S])[0].mutate();
|
|
}
|