blob: 0eb134cbd3bbf9f1921b386ef7389e4739aaeb5d [file] [log] [blame]
Eli Friedman9c0e6f92009-02-28 05:41:13 +00001// RUN: clang -fsyntax-only -verify %s
2
3int test1(int x) {
4 goto L; // expected-error{{illegal jump}}
5 int a[x];
6 L:
7 return sizeof a;
8}