about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-extern_system_varargs.rs
blob: 2206776cccac14452bdb2dc923b91b320456fe77 (plain)
1
2
3
4
5
6
7
fn system(f: extern "system" fn(usize, ...)) {
    //~^  ERROR unstable

    f(22, 44);
}

fn main() {}