about summary refs log tree commit diff
path: root/src/test/rustdoc/variadic.rs
blob: 5af2aea21fcacd94040f88f726176fedf46a66b4 (plain)
1
2
3
4
extern "C" {
    // @has variadic/fn.foo.html //pre 'pub unsafe extern "C" fn foo(x: i32, _: ...)'
    pub fn foo(x: i32, ...);
}