aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/vrp3.h
blob: 0e97d0c491c2c57eb47d1aeda01aac9e5d5b8288 (plain)
1
2
3
4
5
6
7
8
9
struct R
{
  long long r1, r2;
  void copy (R const &r) { r1 = r.r1; r2 = r.r2; }
  R ();
  explicit R (int, int);
  R (R const &r) { copy (r); }
  static int compare (R const &, R const &);
};