]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-21402.rs
Enable full revision in const generics ui tests
[rust.git] / src / test / ui / issues / issue-21402.rs
1 // check-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 #[derive(Hash)]
6 struct Foo {
7     a: Vec<bool>,
8     b: (bool, bool),
9     c: [bool; 2],
10 }
11
12 fn main() {}