mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
239 B
Rust
16 lines
239 B
Rust
//@ 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
|
|
};
|
|
}
|