summaryrefslogtreecommitdiff
path: root/tests/error_undefined_var.c
blob: 852746feb6253ce96ac67ee891f15b848bf13c66 (plain)
1
2
3
4
int main() {
  int x = undefined_variable;
  return x;
}