2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist33.C
blob9ab4b55d31e481d8647d9a7ed35d056bd9f4b955
1 // PR c++/44045
2 // { dg-do compile { target c++11 } }
4 struct base
6    virtual ~base() { }
7 };
9 int main()
11  base ptr_array[1];
12  ptr_array = { base() };        // { dg-error "assign" }