Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2093-infer-outlives
/
nested-structs.rs
blob: ac6817d22bdc06a9e8c1de9c07af8440d478f512 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
rustc_attrs
)]
#[
rustc_outlives
]
struct
Foo
<
'
a
,
T
>
{
//~ ERROR rustc_outlives
field1
:
Bar
<
'
a
,
T
>
}
struct
Bar
<
'
b
,
U
>
{
field2
:
&
'
b U
}
fn
main
()
{}