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