summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-21402.rs
blob: d140b6162ceec808c057eff691e6a3346d4c79e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616

#[derive(Hash)]
struct Foo {
    a: Vec<bool>,
    b: (bool, bool),
    c: [bool; 2],
}

fn main() {}