Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
structs-enums
/
foreign-struct.rs
blob: 00a23b354a97edd3c3a8a43cb813073c51f61c04 [
file
] [
log
] [
blame
]
// 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
()
{}