blob: 01c76d64c6ba05b367a05c99344191bd5784fd8e [file] [log] [blame]
#![feature(unboxed_closures)]
trait Three<A,B,C> { fn dummy(&self) -> (A,B,C); }
fn foo(_: &dyn Three())
//~^ ERROR wrong number of type arguments
//~| ERROR associated type `Output` not found
{}
fn main() { }