2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / vrp3.h
blob0e97d0c491c2c57eb47d1aeda01aac9e5d5b8288
1 struct R
3 long long r1, r2;
4 void copy (R const &r) { r1 = r.r1; r2 = r.r2; }
5 R ();
6 explicit R (int, int);
7 R (R const &r) { copy (r); }
8 static int compare (R const &, R const &);
9 };