aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/initlist33.C
blob: b1c0ba09b5ebf73cdfe40a02ab8db691b80d6f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/44045
// { dg-options "-std=c++0x" }

struct base
{
   virtual ~base() { }
};

int main()
{
 base ptr_array[1];
 ptr_array = { base() };	// { dg-error "assign" }
}