diff options
Diffstat (limited to 'clang/test/SemaCXX/friend.cpp')
-rw-r--r-- | clang/test/SemaCXX/friend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/friend.cpp b/clang/test/SemaCXX/friend.cpp index ba34efe36c2..65e0da761cf 100644 --- a/clang/test/SemaCXX/friend.cpp +++ b/clang/test/SemaCXX/friend.cpp @@ -44,7 +44,7 @@ namespace test2 { // PR5134 namespace test3 { class Foo { - friend const int getInt(int inInt = 0); // expected-warning{{type qualifier on return type has no effect}} + friend const int getInt(int inInt = 0); // expected-warning{{'const' type qualifier on return type has no effect}} }; } |