aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist33.C
blob: 9ab4b55d31e481d8647d9a7ed35d056bd9f4b955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/44045
// { dg-do compile { target c++11 } }

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

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