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