Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
deriving
/
deriving-via-extension-hash-struct.rs
blob: ad2a84b6bf9204cf53147c77d7aab4fe0c6ef186 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
//@ pretty-expanded FIXME #23616
#[
derive
(
Hash
)]
struct
Foo
{
x
:
isize
,
y
:
isize
,
z
:
isize
}
pub
fn
main
()
{}