comparison gcc/testsuite/g++.dg/torture/pr64378.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
3 struct data { 3 struct data {
4 data(int) {} 4 data(int) {}
5 }; 5 };
6 6
7 struct top { 7 struct top {
8 virtual int topf() {} 8 virtual int topf() { return 0; }
9 }; 9 };
10 10
11 struct child1: top { 11 struct child1: top {
12 void childf() 12 void childf()
13 { 13 {