Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
dropck
/
dropck-after-failed-type-lowering.rs
blob: 2441e26fec96c81936e5a191aaddd6544fcbfd48 [
file
] [
log
] [
blame
]
// Regression test for #137329
trait
B
{
type
C
<
'
a
>;
fn
d
<
E
>()
->
F
<
E
>
{
todo
!()
}
}
struct
F
<
G
>
{
h
:
Option
<<
G
as
B
>::
C
>,
//~^ ERROR missing generics for associated type `B::C`
}
fn
main
()
{}