summaryrefslogtreecommitdiffstats
path: root/test/CXX/class.derived/p8-0x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CXX/class.derived/p8-0x.cpp')
-rw-r--r--test/CXX/class.derived/p8-0x.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/CXX/class.derived/p8-0x.cpp b/test/CXX/class.derived/p8-0x.cpp
new file mode 100644
index 0000000..6a667f7
--- /dev/null
+++ b/test/CXX/class.derived/p8-0x.cpp
@@ -0,0 +1,22 @@
+// RUN: %clang_cc1 %s -fsyntax-only -verify -std=c++0x
+
+namespace Test1 {
+
+struct A {
+ virtual void f(); // expected-note {{overridden virtual function is here}}
+};
+
+struct B explicit : A {
+ virtual void f(); // expected-error {{overrides function without being marked 'override'}}
+};
+
+struct C {
+ virtual ~C();
+};
+
+struct D explicit : C {
+ virtual ~D();
+};
+
+}
+
OpenPOWER on IntegriCloud