blob: a6c86311b37722ff5bf9dd04e4b70ca23f593a21 [file] [log] [blame]
#![feature(unboxed_closures)]
trait One<A> { fn foo(&self) -> A; }
fn foo(_: &dyn One()) //~ ERROR associated type `Output` not found for `One<()>`
{}
fn main() { }