2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2013-08-01 01:53:41 -07:00
|
|
|
// aux-build:xcrate_static_addresses.rs
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate xcrate_static_addresses;
|
2013-08-01 01:53:41 -07:00
|
|
|
|
2014-08-12 19:25:05 -07:00
|
|
|
use xcrate_static_addresses as other;
|
2013-08-01 01:53:41 -07:00
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
other::verify_same(&other::global);
|
2013-09-11 10:06:16 -07:00
|
|
|
other::verify_same2(other::global2);
|
2013-08-01 01:53:41 -07:00
|
|
|
}
|