about summary refs log tree commit diff
path: root/tests/ui/structs-enums/foreign-struct.rs
blob: 4f2e413ab40cda067bd24733f53faed5a8c61b56 (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 "C" {
        pub fn printf(v: void);
    }
}

pub fn main() {}