rust/tests/ui/feature-gates/feature-gate-c_variadic.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
112 B
Rust
Raw Normal View History

2019-02-24 22:40:11 +00:00
#![crate_type="lib"]
pub unsafe extern "C" fn test(_: i32, ap: ...) { }
2019-04-18 19:36:32 +00:00
//~^ C-variadic functions are unstable