Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
compile-fail
/
deref-non-pointer.rs
blob: 8c23b1db2dec004d7c4bf693112e3cda92e265d9 [
file
] [
log
] [
blame
]
// error-pattern:cannot be dereferenced
fn
main
()
{
match
*
1
{
_
=>
{
fail
;
}
}
}