comparison gcc/testsuite/g++.dg/torture/pr64378.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // { dg-do compile }
2 // { dg-options "-fno-ipa-cp" }
3 struct data {
4 data(int) {}
5 };
6
7 struct top {
8 virtual int topf() {}
9 };
10
11 struct child1: top {
12 void childf()
13 {
14 data d(topf());
15 }
16 };
17
18 void test(top *t)
19 {
20 child1 *c = static_cast<child1 *>(t);
21 c->childf();
22 child1 d;
23 test(&d);
24 }