summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/qualified-id-lookup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/qualified-id-lookup.cpp')
-rw-r--r--test/SemaCXX/qualified-id-lookup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaCXX/qualified-id-lookup.cpp b/test/SemaCXX/qualified-id-lookup.cpp
index a187d49..abde62e 100644
--- a/test/SemaCXX/qualified-id-lookup.cpp
+++ b/test/SemaCXX/qualified-id-lookup.cpp
@@ -96,12 +96,12 @@ void test_a() {
a::a::a::i = 4;
}
-struct Undef { // expected-note{{definition of 'struct Undef' is not complete until the closing '}'}}
+struct Undef { // expected-note{{definition of 'Undef' is not complete until the closing '}'}}
typedef int type;
Undef::type member;
- static int size = sizeof(Undef); // expected-error{{invalid application of 'sizeof' to an incomplete type 'struct Undef'}}
+ static int size = sizeof(Undef); // expected-error{{invalid application of 'sizeof' to an incomplete type 'Undef'}}
int f();
};
OpenPOWER on IntegriCloud