Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
11 lines
132 B
Rust
11 lines
132 B
Rust
//@ run-pass
|
|
//@ aux-build:issue-11529.rs
|
|
|
|
|
|
extern crate issue_11529 as a;
|
|
|
|
fn main() {
|
|
let one = 1;
|
|
let _a = a::A(&one);
|
|
}
|