re PR c++/90909 (call devirtualized to pure virtual)

2019-06-21  Paolo Carlini  <paolo.carlini@oracle.com>

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

From-SVN: r272576
This commit is contained in:
Paolo Carlini 2019-06-21 21:58:19 +00:00 committed by Paolo Carlini
parent c13c129f8f
commit fd4e7255b6
2 changed files with 16 additions and 0 deletions

View 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

View File

@ -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(); }