mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
256 B
Rust
13 lines
256 B
Rust
//@ aux-build:issue-66286.rs
|
|
|
|
// Regression test for #66286.
|
|
|
|
extern crate issue_66286;
|
|
|
|
#[issue_66286::vec_ice]
|
|
pub extern fn foo(_: Vec(u32)) -> u32 {
|
|
//~^ ERROR: parenthesized type parameters may only be used with a `Fn` trait
|
|
0
|
|
}
|
|
|
|
fn main() {}
|