blob: 0e97d0c491c2c57eb47d1aeda01aac9e5d5b8288 [file] [log] [blame]
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 &);
};