blob: bc9901c795b3a894415c147aa4631f8a04ac8023 [file] [log] [blame]
#![feature(unboxed_closures)]
trait Zero { fn dummy(&self); }
fn foo(_: dyn Zero())
//~^ ERROR wrong number of type arguments
//~| ERROR associated type `Output` not found for `Zero`
{}
fn main() { }