Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
deref-patterns
/
deref-non-pointer.rs
blob: 82ab355e697b257d649a0dd933723714a3d45f6a [
file
]
fn
main
()
{
match
*
1
{
//~ ERROR: cannot be dereferenced
_
=>
{
panic
!();
}
}
}