summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0060.rs
blob: 2bb490fb3eabf93fb6dc9d233b44eaf8c0349ed5 (plain)
1
2
3
4
5
6
7
8
9
extern "C" {
    fn printf(_: *const u8, ...) -> u32;
}

fn main() {
    unsafe { printf(); }
    //~^ ERROR E0060
    //~| expected at least 1 parameter
}