2021-04-01 20:54:57 +02:00
|
|
|
// Test that when in MIR the amount of local_decls and amount of normalized_input_tys don't match
|
|
|
|
|
// that an out-of-bounds access does not occur.
|
|
|
|
|
#![feature(c_variadic)]
|
|
|
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
|
|
fn foo(_: Bar, ...) -> impl {}
|
2025-08-28 12:03:19 +02:00
|
|
|
//~^ ERROR defining functions with C-variadic arguments is only allowed for free functions with the "C" or "C-unwind" calling convention
|
2021-04-01 20:54:57 +02:00
|
|
|
//~| ERROR cannot find type `Bar` in this scope
|
|
|
|
|
//~| ERROR at least one trait must be specified
|