mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
318 B
Rust
21 lines
318 B
Rust
// check-pass
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
struct Foo<'a> {
|
|
i: &'a bool,
|
|
j: Option<&'a isize>,
|
|
}
|
|
|
|
impl<'a> Foo<'a> {
|
|
fn bar(&mut self, j: &isize) {
|
|
let child = Foo {
|
|
i: self.i,
|
|
j: Some(j)
|
|
};
|
|
}
|
|
}
|
|
|
|
fn main() {}
|