summary refs log tree commit diff
path: root/src/test/ui/parser/bad-match.rs
blob: 79bc7eec3113e275ec1c160ab9a425d3fc4095de (plain)
1
2
3
4
fn main() {
  let isize x = 5; //~ ERROR expected one of `:`, `;`, `=`, or `@`, found `x`
  match x;
}