From: Olivier Goffart Date: Fri, 9 Jan 2015 09:42:32 +0000 (+0000) Subject: Fix test from my previous commit X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f03fd7f1afa93f73f156c82e9541d11e1519ec31;p=clang Fix test from my previous commit (I should have re-run the test after running clang-format) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@225515 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Sema/typo-correction.c b/test/Sema/typo-correction.c index d8524b9d23..df7da797f0 100644 --- a/test/Sema/typo-correction.c +++ b/test/Sema/typo-correction.c @@ -19,7 +19,7 @@ struct ContainerStuct { void func(int arg) { switch (arg) { - case SOME_ENUM_: - ; // expected-error {{use of undeclared identifier 'SOME_ENUM_'; did you mean 'SOME_ENUM'}} + case SOME_ENUM_: // expected-error {{use of undeclared identifier 'SOME_ENUM_'; did you mean 'SOME_ENUM'}} + ; } }