aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/DRs/dr2137-2.C
blob: ba90860b3afea34db78f267dac7623a294e7c619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// DR 2137
// { dg-do link { target c++11 } }

// Test that copying Q is better than converting to R.

struct Q {
  Q() { }
  Q(const Q&) { }
};

struct R {
  R(const Q&);
};

void f(Q) { }
void f(R);

int main()
{
  f({Q()});
}