1 // PR c++/42060
2 // { dg-do compile { target c++11 } }
3 
foo()4 void foo()
5 {
6   int a[1];
7   throw a = {}; // { dg-error "assign" }
8 }
9