about summary refs log tree commit diff
path: root/tests/rustdoc/variadic.rs
blob: 8bf40464eff6df973c9468038a6a488796f7e252 (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, ...);
}