blob: 308bdd6e28cc4c500f2531c900b5506a5ca3761e [file] [log] [blame]
// 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());
}