rust/tests/ui/unboxed-closures/unboxed-closure-sugar-used-on-struct.rs
2023-01-11 09:32:08 +00:00

13 lines
316 B
Rust

// Test that parentheses form doesn't work with struct types appearing in argument types.
struct Bar<A> {
f: A
}
fn foo(b: Box<Bar()>) {
//~^ ERROR parenthesized type parameters may only be used with a `Fn` trait
//~| ERROR this struct takes 1 generic argument but 0 generic arguments
}
fn main() { }