Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted58.C
blob6ddae46cd637b566c2f8bdb7880e54e5e6c6b27b
1 // Core Issue #1331 (const mismatch with defaulted copy constructor)
2 // { dg-do compile { target c++11 } }
4 struct M
6   M() = default;
7   M& operator=(M&);
8 };
10 template<typename T> struct W
12   W() = default;
13   W& operator=(const W&) = default; // { dg-error "binding" }
14 // { dg-error "implicitly deleted" "" { target c++17_down } .-1 }
15   T t;
18 int
19 main ()
21   W<M> w1, w2;
22   w1 = w2; // { dg-error "use of deleted function" }