aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/class/class.friend/p2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CXX/class/class.friend/p2.cpp')
-rw-r--r--test/CXX/class/class.friend/p2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CXX/class/class.friend/p2.cpp b/test/CXX/class/class.friend/p2.cpp
index 87b69c095fbd..fb3cd19b2b18 100644
--- a/test/CXX/class/class.friend/p2.cpp
+++ b/test/CXX/class/class.friend/p2.cpp
@@ -4,7 +4,7 @@ struct B0;
class A {
friend class B {}; // expected-error {{cannot define a type in a friend declaration}}
- friend int; // expected-warning {{non-class friend type 'int' is a C++0x extension}}
+ friend int; // expected-warning {{non-class friend type 'int' is a C++11 extension}}
friend B0; // expected-warning {{specify 'struct' to befriend 'B0'}}
friend class C; // okay
};