Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
issues
/
issue-37323.rs
blob: 61c8029adf53bd05a0a7ec893bda4904c8216605 [
file
] [
log
] [
blame
]
// build-pass (FIXME(62277): could be check-pass?)
#![
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
()
{
}