blob: a084fb0812bace6c8e1b1c00a72bceaaa3232cbc [file] [log] [blame]
Argyrios Kyrtzidis7fd3a642010-03-30 22:14:32 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3// PR6647
4class C {
5 // After the error, the rest of the tokens inside the default arg should be
6 // skipped, avoiding a "expected ';' after class" after 'undecl'.
7 void m(int x = undecl + 0); // expected-error {{use of undeclared identifier 'undecl'}}
8};
9