aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Trieu <rtrieu@google.com>2011-05-04 00:16:24 +0000
committerRichard Trieu <rtrieu@google.com>2011-05-04 00:16:24 +0000
commit4f40ddde58cb9bebcd23eb3ef3c1b399bac4d938 (patch)
treeb83da3354737add232eb04bb5d54c7f0b8d781a7
parentdd3e5549e3c11e217078938aacf72f042eea5343 (diff)
Fix a typo in a test.
CHEKC -> CHECK git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130809 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CXX/class/class.mem/p1b.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CXX/class/class.mem/p1b.cpp b/test/CXX/class/class.mem/p1b.cpp
index d3493f6fd7..3e8c985305 100644
--- a/test/CXX/class/class.mem/p1b.cpp
+++ b/test/CXX/class/class.mem/p1b.cpp
@@ -16,7 +16,7 @@ public:
void a3(int a = 42);
- // CHEKC: error: use of undeclared identifier 'first'
+ // CHECK: error: use of undeclared identifier 'first'
void a4(int a = first); // expected-error{{use of undeclared identifier 'first'}}
class B {