(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
pr84973-3.C
// { dg-do link }

template <int> void a() {
  typedef struct {
    void b() try { b(); } catch (short) {
    }
  } c;
}

int
main() {
  a<0>();
}