aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/deleted2.C
blob: 8590c49f3c5cee6b222f4f78ae2826686ff38ed1 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/52707
// { dg-do compile { target c++11 } }

struct A {
 int m;
 A() = delete;
};

A a = {1};