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