blob: e634c55f824fdf770f04658e7181b4ccdb79d119 [file] [log] [blame]
trait Foo {
type Item;
}
struct X;
impl Foo for X {
type Item = bool;
}
fn print_x(_: &dyn Foo<Item=bool>, extra: &str) {
println!("{}", extra);
}
fn main() {
print_x(X);
//~^ ERROR E0061
}