Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
dyn-compatibility
/
missing-assoc-type.rs
blob: 135761dd0365680c10e4b8776f528c3406b36d97 [
file
]
trait
Foo
{
type
Bar
<
T
>;
}
fn
bar
(
x
:
&
dyn
Foo
)
{}
//~ ERROR the trait `Foo` is not dyn compatible
fn
main
()
{}