(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
eh/
pr84968.C
// { dg-do compile { target c++11 } }

// { dg-options "" }

union b;

struct S {
  template <typename>
  void a()
    try {
    } catch (int ()
	     noexcept (({ union b a; true; }))) // { dg-error "constant" }
  {
  }
};