mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
314 B
Rust
16 lines
314 B
Rust
// run-pass
|
|
// ignore-pretty issue #37199
|
|
|
|
pub struct Foo;
|
|
|
|
pub fn get_foo2<'a>(foo: &'a mut Option<&'a mut Foo>) -> &'a mut Foo {
|
|
match foo {
|
|
// Ensure that this is not considered a move, but rather a reborrow.
|
|
&mut Some(ref mut x) => *x,
|
|
&mut None => panic!(),
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
}
|