Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
11 lines
161 B
Rust
11 lines
161 B
Rust
//@ run-pass
|
|
//@ aux-build:pub_use_mods_xcrate.rs
|
|
|
|
|
|
#![allow(unused_imports)]
|
|
|
|
extern crate pub_use_mods_xcrate;
|
|
use pub_use_mods_xcrate::a::c;
|
|
|
|
pub fn main(){}
|