blob: b1c0ba09b5ebf73cdfe40a02ab8db691b80d6f21 [file] [log] [blame]
// PR c++/44045
// { dg-options "-std=c++0x" }
struct base
{
virtual ~base() { }
};
int main()
{
base ptr_array[1];
ptr_array = { base() }; // { dg-error "assign" }
}