mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-30 22:38:29 +00:00
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
11 lines
127 B
Rust
11 lines
127 B
Rust
//@ run-pass
|
|
//@ aux-build:priv-impl-prim-ty.rs
|
|
|
|
|
|
extern crate priv_impl_prim_ty as bar;
|
|
|
|
pub fn main() {
|
|
bar::frob(1);
|
|
|
|
}
|