mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
14 lines
188 B
Rust
14 lines
188 B
Rust
//@ 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 => {}
|
|
_ => {}
|
|
}
|
|
}
|