Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
rustdoc-ui
/
unable-fulfill-trait.rs
blob: 7035708224808de3539917160b98b5d8895eb2f4 [
file
] [
log
] [
blame
]
// This test ensures that it's not crashing rustdoc.
pub
struct
Foo
<
'a, '
b
,
T
>
{
field1
:
dyn
Bar
<
'a, '
b
,>,
//~^ ERROR
//~^^ ERROR
}
pub
trait
Bar
<
'x, '
s
,
U
>
where U
:
'
x
,
Self
:
'
x
,
Self
:
'
s
{}