Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / defarg13.C
blob27c6db50aad369a33d865654b2195fffb682ec2c
1 // PR c++/38485
3 template <class Key, class T>
4 class QMap { };
6 class XMLConfigurations {
7   void translateToOther(QMap<int, int> match = (QMap<int, int>()));
8 };