summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/this.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/this.cpp')
-rw-r--r--test/SemaCXX/this.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaCXX/this.cpp b/test/SemaCXX/this.cpp
index 167755f..27ee1e8 100644
--- a/test/SemaCXX/this.cpp
+++ b/test/SemaCXX/this.cpp
@@ -1,6 +1,6 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
-int x = this; // expected-error {{error: invalid use of 'this' outside of a nonstatic member function}}
+int x = this; // expected-error {{invalid use of 'this' outside of a non-static member function}}
void f() {
- int x = this; // expected-error {{error: invalid use of 'this' outside of a nonstatic member function}}
+ int x = this; // expected-error {{invalid use of 'this' outside of a non-static member function}}
}
OpenPOWER on IntegriCloud