summaryrefslogtreecommitdiffstats
path: root/test/Parser/cxx-ambig-paren-expr-asan.cpp
blob: ec9d6b9da39d09e0c0eea35559aff91dbbeb5ab2 (plain)
1
2
3
4
5
6
7
8
9
// 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}}