[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / ext / attrib54.C
blob5ff28c836efc30e03967d82ce5019c5acaba032f
1 // PR c++/82406
3 class a
5 public:
6   template <typename b> void operator() (const b &);
7 };
8 void c () throw () __attribute__ ((__nonnull__));
9 void
10 d ()
12   a e;
13   e (c);