summaryrefslogtreecommitdiffstats
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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CXX/class/class.friend/p2.cpp b/test/CXX/class/class.friend/p2.cpp
index eb5036f..87b69c0 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 type 'int' cannot be a friend}}
- friend B0; // expected-warning {{must specify 'struct' to befriend}}
+ friend int; // expected-warning {{non-class friend type 'int' is a C++0x extension}}
+ friend B0; // expected-warning {{specify 'struct' to befriend 'B0'}}
friend class C; // okay
};
OpenPOWER on IntegriCloud