Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc-ui
/
unable-fulfill-trait.rs
blob: 4edc7ab76c198e40dee8794ba50b4c440ae9fbc9 [
file
] [
log
] [
blame
] [
edit
]
// 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
,
{
}