summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mir/issue-83499-input-output-iteration-ice.rs
blob: 0086d2ec18cfad98d05f8a9f1603749d00c8ea28 (plain)
1
2
3
4
5
6
7
8
9
10
// 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 or `unsafe extern "C"` functions may be C-variadic
//~| ERROR cannot find type `Bar` in this scope
//~| ERROR at least one trait must be specified