mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
19 lines
256 B
Rust
19 lines
256 B
Rust
// build-pass
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
pub struct Foo {
|
|
a: isize,
|
|
}
|
|
|
|
struct Bar<'a> {
|
|
a: Box<Option<isize>>,
|
|
b: &'a Foo,
|
|
}
|
|
|
|
fn check(a: Box<Foo>) {
|
|
let _ic = Bar{ b: &*a, a: Box::new(None) };
|
|
}
|
|
|
|
pub fn main(){}
|