2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2013-03-07 00:30:20 -06:00
|
|
|
// aux-build:cci_const.rs
|
2018-08-31 08:02:01 -05:00
|
|
|
#![allow(non_upper_case_globals)]
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate cci_const;
|
2013-03-07 00:30:20 -06:00
|
|
|
use cci_const::bar;
|
2013-08-21 08:27:48 -05:00
|
|
|
static foo: extern "C" fn() = bar;
|
2013-03-07 00:30:20 -06:00
|
|
|
|
2013-03-27 11:58:28 -05:00
|
|
|
pub fn main() {
|
2014-02-28 03:23:06 -06:00
|
|
|
assert!(foo == bar);
|
2013-03-07 00:30:20 -06:00
|
|
|
}
|