]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cross-crate/xcrate-static-addresses.rs
Merge commit '370c397ec9169809e5ad270079712e0043514240' into sync_cg_clif-2022-03-20
[rust.git] / src / test / ui / cross-crate / xcrate-static-addresses.rs
1 // run-pass
2 // aux-build:xcrate_static_addresses.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate xcrate_static_addresses;
7
8 use xcrate_static_addresses as other;
9
10 pub fn main() {
11     other::verify_same(&other::global);
12     other::verify_same2(other::global2);
13 }