projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02e7644
)
Fix test from my previous commit
author
Olivier Goffart
<ogoffart@woboq.com>
Fri, 9 Jan 2015 09:42:32 +0000
(09:42 +0000)
committer
Olivier Goffart
<ogoffart@woboq.com>
Fri, 9 Jan 2015 09:42:32 +0000
(09:42 +0000)
(I should have re-run the test after running clang-format)
llvm-svn: 225515
clang/test/Sema/typo-correction.c
patch
|
blob
|
history
diff --git
a/clang/test/Sema/typo-correction.c
b/clang/test/Sema/typo-correction.c
index
d8524b9
..
df7da79
100644
(file)
--- a/
clang/test/Sema/typo-correction.c
+++ b/
clang/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'}}
+ ;
}
}