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