mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
191 B
Rust
12 lines
191 B
Rust
// run-pass
|
|
// aux-build:pub_use_mods_xcrate.rs
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
#![allow(unused_imports)]
|
|
|
|
extern crate pub_use_mods_xcrate;
|
|
use pub_use_mods_xcrate::a::c;
|
|
|
|
pub fn main(){}
|