aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/bad-alt.rs
blob: 0b5dbbfe996eba65e2fd03c0e37436f8114c75c2 (plain) (blame)
1
2
3
4
5
6
7
// xfail-stage0
// error-pattern: Unexpected token 'x'

fn main() {
  let int x = 5;
  alt x;
}