// Test that parentheses form doesn't work with struct types appearing in argument types. struct Bar { f: A } fn foo(b: Box) { //~^ 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() { }