]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cross-crate/xcrate-static-addresses.rs
Merge commit '0969bc6dde001e01e7e1f58c8ccd7750f8a49ae1' into sync_cg_clif-2021-03-29
[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 }