rustc/tests/ui/unboxed-closures/unboxed-closure-sugar-wrong-trait.rs
2023-09-11 11:26:34 +02:00

10 lines
224 B
Rust

#![feature(unboxed_closures)]
trait Trait {}
fn f<F:Trait(isize) -> isize>(x: F) {}
//~^ ERROR trait takes 0 generic arguments but 1 generic argument
//~| ERROR associated type `Output` not found for `Trait`
fn main() {}