blob: 315210891609bba3551f8c702f5c83301ba80ec3 [file] [log] [blame]
//@ run-pass
//@ aux-build:cci_const.rs
extern crate cci_const;
pub fn main() {
let x = cci_const::uint_val;
match x {
cci_const::uint_val => {}
_ => {}
}
}