Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
privacy
/
pub-use-xcrate.rs
blob: 96c650d0c6843ff7df86c17595d507849397fa2c [
file
] [
log
] [
blame
] [
edit
]
//@ 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
};
}