rust/tests/ui/mir/issue-83499-input-output-iteration-ice.rs
2024-06-22 23:30:31 -07:00

11 lines
424 B
Rust

// 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 {}
//~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind"` functions may have a C-variadic arg
//~| ERROR cannot find type `Bar` in this scope
//~| ERROR at least one trait must be specified