mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
198 B
Rust
11 lines
198 B
Rust
//@ 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);
|
|
}
|