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 16:40:11 -06:00
#![crate_type="lib"]
pub unsafe extern "C" fn test(_: i32, ap: ...) { }
2019-04-18 14:36:32 -05:00
//~^ C-variadic functions are unstable