fix test (broken in r77224)
authorBenjamin Kramer <benny.kra@googlemail.com>
Mon, 27 Jul 2009 19:53:49 +0000 (19:53 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Mon, 27 Jul 2009 19:53:49 +0000 (19:53 +0000)
llvm-svn: 77241

clang/test/SemaCXX/constructor-initializer.cpp

index 08739c0..4476727 100644 (file)
@@ -112,7 +112,7 @@ struct N : M  {
 
 struct P : M  { // expected-error {{default constructor for 'struct M' is missing in initialization of base class}}
   P()  {  }
-  M m; // expected-error {{default constructor for 'struct M' is missing in initialization of mamber}}
+  M m; // expected-error {{default constructor for 'struct M' is missing in initialization of member}}
 };
 
 struct Q {