2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: issue-66286.rs
|
2020-12-05 08:02:56 +09:00
|
|
|
|
|
|
|
|
// Regression test for #66286.
|
|
|
|
|
|
|
|
|
|
extern crate issue_66286;
|
|
|
|
|
|
|
|
|
|
#[issue_66286::vec_ice]
|
2024-10-31 11:39:45 +01:00
|
|
|
pub extern "C" fn foo(_: Vec(u32)) -> u32 {
|
2020-12-05 08:02:56 +09:00
|
|
|
//~^ ERROR: parenthesized type parameters may only be used with a `Fn` trait
|
|
|
|
|
0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|