mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
275 B
Rust
17 lines
275 B
Rust
//@ run-pass
|
|
// See https://github.com/rust-lang/rust/issues/38942
|
|
|
|
#[repr(u64)]
|
|
pub enum NSEventType {
|
|
NSEventTypePressure,
|
|
}
|
|
|
|
pub const A: u64 = NSEventType::NSEventTypePressure as u64;
|
|
|
|
fn banana() -> u64 {
|
|
A
|
|
}
|
|
|
|
fn main() {
|
|
println!("banana! {}", banana());
|
|
}
|