diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-07-27 19:53:49 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-07-27 19:53:49 +0000 |
commit | 86759768065763e54882503b391ce0f4aca6839c (patch) | |
tree | f15dbbcd412070b6c75d0d14b88e86ec2355a974 | |
parent | 83154cf240047439f59dabe8b74b032cef982ced (diff) | |
download | bcm5719-llvm-86759768065763e54882503b391ce0f4aca6839c.tar.gz bcm5719-llvm-86759768065763e54882503b391ce0f4aca6839c.zip |
fix test (broken in r77224)
llvm-svn: 77241
-rw-r--r-- | clang/test/SemaCXX/constructor-initializer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/constructor-initializer.cpp b/clang/test/SemaCXX/constructor-initializer.cpp index 08739c024c9..44767272192 100644 --- a/clang/test/SemaCXX/constructor-initializer.cpp +++ b/clang/test/SemaCXX/constructor-initializer.cpp @@ -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 { |