rust/tests/rustdoc/variadic.rs

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

5 lines
127 B
Rust
Raw Permalink Normal View History

2015-08-21 01:27:53 +08:00
extern "C" {
//@ has variadic/fn.foo.html //pre 'pub unsafe extern "C" fn foo(x: i32, ...)'
2015-08-21 01:27:53 +08:00
pub fn foo(x: i32, ...);
}