Fix test from my previous commit

(I should have re-run the test after running clang-format)

llvm-svn: 225515
This commit is contained in:
Olivier Goffart 2015-01-09 09:42:32 +00:00
parent 02e764487f
commit aabcb80096
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ struct ContainerStuct {
void func(int arg) { void func(int arg) {
switch (arg) { switch (arg) {
case SOME_ENUM_: case SOME_ENUM_: // expected-error {{use of undeclared identifier 'SOME_ENUM_'; did you mean 'SOME_ENUM'}}
; // expected-error {{use of undeclared identifier 'SOME_ENUM_'; did you mean 'SOME_ENUM'}} ;
} }
} }