mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
263 B
Rust
14 lines
263 B
Rust
// run-pass
|
|
// aux-build:xcrate_static_addresses.rs
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
extern crate xcrate_static_addresses;
|
|
|
|
use xcrate_static_addresses as other;
|
|
|
|
pub fn main() {
|
|
other::verify_same(&other::global);
|
|
other::verify_same2(other::global2);
|
|
}
|