summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cross-crate/xcrate-static-addresses.rs
blob: 3c33976568e9436b9f0d969a9962e29ba36ab43e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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);
}