summary refs log tree commit diff
path: root/src/test/compile-fail/deref-non-pointer.rs
blob: 3e4b7b73b603fadb605c461d5a433fd3ddf85641 (plain)
1
2
3
4
5
6
// error-pattern:cannot be dereferenced
fn main() {
  alt *1 {
      _ { fail; }
  }
}