Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
9 lines
97 B
Rust
9 lines
97 B
Rust
//@ run-pass
|
|
|
|
struct A(#[allow(dead_code)] bool);
|
|
|
|
pub fn main() {
|
|
let f = A;
|
|
f(true);
|
|
}
|