2016-12-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / vla8.C
blob9e2d6bdad436b284bcc34d0d8c6add56ba894f92
1 // PR c++/42387
2 // { dg-options "" }
4 template<class PF>
5 struct AvlTreeIter
7   int Num();
9   AvlTreeIter()
10   {
11     new (void* [Num()]); // { dg-warning "parentheses" }
12   }
15 AvlTreeIter<int> a; // { dg-message "from here" }