re PR c++/90909 (call devirtualized to pure virtual)
authorPaolo Carlini <paolo.carlini@oracle.com>
Fri, 21 Jun 2019 21:58:19 +0000 (21:58 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Fri, 21 Jun 2019 21:58:19 +0000 (21:58 +0000)
2019-06-21  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/90909
* g++.dg/other/final7.C: New.

From-SVN: r272576

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/other/final7.C [new file with mode: 0644]

index 5e94d9a..72dcea8 100644 (file)
@@ -1,3 +1,8 @@
+2019-06-21  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/90909
+       * g++.dg/other/final7.C: New.
+
 2019-06-21  Jakub Jelinek  <jakub@redhat.com>
 
        * g++.dg/vect/simd-2.cc: Don't xfail, instead expect vectorization on
diff --git a/gcc/testsuite/g++.dg/other/final7.C b/gcc/testsuite/g++.dg/other/final7.C
new file mode 100644 (file)
index 0000000..43ab7ba
--- /dev/null
@@ -0,0 +1,11 @@
+// PR c++/90909
+// { dg-do run { target c++11 } }
+
+#include <cassert>
+
+struct S1 { virtual bool f() { return false; } };
+struct S2: S1 { virtual bool f() { return true; } };
+struct S3: S2 { using S1::f; };
+struct S4 final: S3 { void g(); };
+void S4::g() { assert (f() == true); }
+int main() { S4().g(); }