blob: 8d48a6a520606003c4a79f31ea580db0b47a2b54 [file] [log] [blame]
//@ run-pass
//@ aux-build:cci_const.rs
#![allow(non_upper_case_globals)]
extern crate cci_const;
use cci_const::bar;
static foo: extern "C" fn() = bar;
pub fn main() {
assert!(foo == bar);
}