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

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