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 Normal View History

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