blob: c96a6fa8b6c91b2942840cc765e3d0e3635c6132 [file] [log] [blame]
// Test that parentheses form doesn't work with struct types appearing in local variables.
struct Bar<A> {
f: A
}
fn bar() {
let x: Box<Bar()> = panic!();
//~^ ERROR parenthesized type parameters may only be used with a `Fn` trait
//~| ERROR wrong number of type arguments: expected 1, found 0
}
fn main() { }