mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
303 B
Rust
19 lines
303 B
Rust
// Regression test for #84455 and #115052.
|
|
// run-pass
|
|
// aux-build:static_init_aux.rs
|
|
extern crate static_init_aux as aux;
|
|
|
|
static V: &u32 = aux::V;
|
|
static F: fn() = aux::F;
|
|
static G: fn() = aux::G;
|
|
|
|
fn v() -> *const u32 {
|
|
V
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(aux::v(), crate::v());
|
|
F();
|
|
G();
|
|
}
|