
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
140 B
Rust
10 lines
140 B
Rust
//@ run-pass
|
|
#![allow(unused_attributes)]
|
|
//@ aux-build:iss.rs
|
|
|
|
|
|
extern crate issue6919_3;
|
|
|
|
pub fn main() {
|
|
let _ = issue6919_3::D.k;
|
|
}
|