comparison gcc/testsuite/g++.dg/opt/pr65003.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
24 struct F : D 24 struct F : D
25 { 25 {
26 F (int &, const int &, const A &); 26 F (int &, const int &, const A &);
27 bool foo (int &, bool) const; 27 bool foo (int &, bool) const;
28 }; 28 };
29 bool D::foo (int &, bool) const {} 29 bool D::foo (int &, bool) const { return true; }
30 F::F (int &, const int &, const A &) {} 30 F::F (int &, const int &, const A &) {}
31 bool F::foo (int &, bool) const {} 31 bool F::foo (int &, bool) const { return false; }