OSDN Git Service

PR c++/26714
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / defaulted28.C
1 // PR c++/49102
2 // PR c++/50034
3 // { dg-options -std=c++0x }
4
5 struct A {
6   A() = default;
7
8 private:
9   A(A const&) = default;        // { dg-error "private" }
10 };
11
12 int f(...) { }
13 int main() {
14   A a;
15   f(a);                         // { dg-error "this context" }
16   sizeof(f(a));                 // OK because unevaluated
17 }