Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
save-analysis
/
issue-37323.rs
blob: 55f5c5a9581b12fb21982446dfb20baf062d4f35 [
file
] [
log
] [
blame
]
// check-pass
// compile-flags: -Zsave-analysis
#![
feature
(
rustc_attrs
)]
#![
allow
(
warnings
)]
#[
derive
(
Debug
)]
struct
Point
{
}
struct
NestedA
<
'a, '
b
>
{
x
:
&
'a NestedB<'
b
>
}
struct
NestedB
<
'
a
>
{
x
:
&
'
a i32
,
}
fn
main
()
{
}