2019-11-04 00:00:00 +00:00
|
|
|
// check-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
|
2015-01-19 15:16:48 -05:00
|
|
|
#[derive(Hash)]
|
|
|
|
|
struct Foo {
|
|
|
|
|
a: Vec<bool>,
|
|
|
|
|
b: (bool, bool),
|
|
|
|
|
c: [bool; 2],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|