Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-extern_system_varargs.rs
blob: 2206776cccac14452bdb2dc923b91b320456fe77 [
file
] [
log
] [
blame
]
fn
system
(
f
:
extern
"system"
fn
(
usize
,
...))
{
//~^ ERROR unstable
f
(
22
,
44
);
}
fn
main
()
{}