diff options
Diffstat (limited to 'test/Parser/cxx0x-ambig.cpp')
-rw-r--r-- | test/Parser/cxx0x-ambig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Parser/cxx0x-ambig.cpp b/test/Parser/cxx0x-ambig.cpp index 4c22ed3a9bbc..b06f432c4359 100644 --- a/test/Parser/cxx0x-ambig.cpp +++ b/test/Parser/cxx0x-ambig.cpp @@ -48,7 +48,7 @@ namespace bitfield { }; // This could be a bit-field. struct S2 { - enum E : T { a = 1, b = 2, c = 3, 4 }; // expected-error {{non-integral type}} expected-error {{expected '}'}} expected-note {{to match}} + enum E : T { a = 1, b = 2, c = 3, 4 }; // expected-error {{non-integral type}} expected-error {{expected identifier}} }; struct S3 { enum E : int { a = 1, b = 2, c = 3, d }; // ok, defines an enum @@ -64,7 +64,7 @@ namespace bitfield { }; // This could be a bit-field. struct S6 { - enum E : int { 1 }; // expected-error {{expected '}'}} expected-note {{to match}} + enum E : int { 1 }; // expected-error {{expected identifier}} }; struct U { |