Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
privacy
/
pub-use-xcrate.rs
blob: e8a6e8cf182d42154ea7382862592f216d5ecda0 [
file
] [
log
] [
blame
]
// run-pass
// aux-build:pub_use_xcrate1.rs
// aux-build:pub_use_xcrate2.rs
// pretty-expanded FIXME #23616
extern
crate pub_use_xcrate2
;
use
pub_use_xcrate2
::
Foo
;
pub
fn
main
()
{
let
_foo
:
Foo
=
Foo
{
name
:
0
};
}