]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cross-crate/xcrate-static-addresses.rs
Merge commit 'f2cdd4a78d89c009342197cf5844a21f8aa813df' into sync_cg_clif-2022-04-22
[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 }