2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
|
//@ aux-build:privacy_reexport.rs
|
2013-11-20 15:15:34 -08:00
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate privacy_reexport;
|
2013-11-20 15:15:34 -08:00
|
|
|
|
2014-01-03 15:30:54 -08:00
|
|
|
pub fn main() {
|
2016-02-02 20:21:24 +00:00
|
|
|
// Check that public extern crates are visible to outside crates
|
|
|
|
|
privacy_reexport::core::cell::Cell::new(0);
|
|
|
|
|
|
2013-11-20 15:15:34 -08:00
|
|
|
privacy_reexport::bar::frob();
|
|
|
|
|
}
|