comparison gcc/testsuite/g++.dg/cpp0x/enum_base3.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
15 struct C 15 struct C
16 { 16 {
17 }; 17 };
18 struct D : C 18 struct D : C
19 { 19 {
20 B foo () const { B a; a.foo (d); } 20 B foo () const { B a; a.foo (d); return B(); }
21 H d; 21 H d;
22 }; 22 };
23 struct F : C 23 struct F : C
24 { 24 {
25 void foo (); 25 void foo ();