blob: 9ab4b55d31e481d8647d9a7ed35d056bd9f4b955 [file] [log] [blame]
// 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" }
}