]> git.lizzy.rs Git - rust.git/blob - src/test/ui/deriving/deriving-via-extension-hash-struct.rs
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / deriving / deriving-via-extension-hash-struct.rs
1 // run-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 #[derive(Hash)]
6 struct Foo {
7     x: isize,
8     y: isize,
9     z: isize
10 }
11
12 pub fn main() {}