mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
13 lines
233 B
Rust
13 lines
233 B
Rust
//@ run-pass
|
|
//@ aux-build:xcrate_static_addresses.rs
|
|
|
|
|
|
extern crate xcrate_static_addresses;
|
|
|
|
use xcrate_static_addresses as other;
|
|
|
|
pub fn main() {
|
|
other::verify_same(&other::global);
|
|
other::verify_same2(other::global2);
|
|
}
|