]> git.lizzy.rs Git - rust.git/blob - src/test/ui/deriving/deriving-via-extension-hash-struct.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[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() {}