mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
20 lines
255 B
Rust
20 lines
255 B
Rust
// 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() {}
|