rust/tests/ui/unboxed-closures/unboxed-closure-sugar-used-on-struct.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
311 B
Rust
Raw Normal View History

// 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 struct takes 1 generic argument but 0 generic arguments
}
fn main() { }