summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unboxed-closures/unboxed-closure-sugar-wrong-number-number-type-parameters-1.rs
blob: a6c86311b37722ff5bf9dd04e4b70ca23f593a21 (plain)
1
2
3
4
5
6
7
8
#![feature(unboxed_closures)]

trait One<A> { fn foo(&self) -> A; }

fn foo(_: &dyn One()) //~ ERROR associated type `Output` not found for `One<()>`
{}

fn main() { }