1// { dg-do assemble  }
2// Bug: g++ forgets to instantiate A<int>
3// Contributed by Jason Merrill <jason@cygnus.com>
4
5template <class T> struct A { };
6void f () throw (A<int>);
7