mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
338 B
Rust
14 lines
338 B
Rust
// 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 this struct takes 1 generic argument but 0 generic arguments
|
|
}
|
|
|
|
fn main() { }
|