summary refs log tree commit diff
path: root/src/test/ui/structs-enums/foreign-struct.rs
blob: ce02c8fb5c3a59ce2fa62d84b45c37dc8c25823d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// run-pass
#![allow(dead_code)]
#![allow(non_camel_case_types)]

// Passing enums by value

// pretty-expanded FIXME #23616

pub enum void { }

mod bindgen {
    use super::void;

    extern {
        pub fn printf(v: void);
    }
}

pub fn main() { }