]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/variadic.rs
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / rustdoc / variadic.rs
1 extern "C" {
2     // @has variadic/fn.foo.html //pre 'pub unsafe extern "C" fn foo(x: i32, ...)'
3     pub fn foo(x: i32, ...);
4 }