Sign in
rust
/
rust
/
ac0aff2115f92bd6f119f0df08d3bf0c4f8d259d
/
.
/
tests
/
ui
/
error-codes
/
E0220.rs
blob: e11a570df79d5b232ecdfa12bc154d04d19fee5a [
file
]
trait
Trait
{
type
Bar
;
}
type
Foo
=
dyn
Trait
<
F
=
i32
>;
//~ ERROR E0220
//~| ERROR E0191
fn
main
()
{
}