You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
379 B
10 lines
379 B
// RUN: %clang_cc1 -fsyntax-only -pedantic -verify %s
|
|
|
|
// This syntax error used to cause use-after free due to token local buffer
|
|
// in ParseCXXAmbiguousParenExpression.
|
|
int H((int()[)]);
|
|
// expected-error@-1 {{expected expression}}
|
|
// expected-error@-2 {{expected ']'}}
|
|
// expected-note@-3 {{to match this '['}}
|
|
// expected-error@-4 {{expected ';' after top level declarator}}
|