Commit fd4e7255 by Paolo Carlini Committed by Paolo Carlini

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
parent c13c129f
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> 2019-06-21 Jakub Jelinek <jakub@redhat.com>
* g++.dg/vect/simd-2.cc: Don't xfail, instead expect vectorization on * g++.dg/vect/simd-2.cc: Don't xfail, instead expect vectorization on
......
// 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(); }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment