Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
12 lines
139 B
Rust
12 lines
139 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
#[derive(Hash)]
|
|
struct Foo {
|
|
a: Vec<bool>,
|
|
b: (bool, bool),
|
|
c: [bool; 2],
|
|
}
|
|
|
|
fn main() {}
|