rt_gccstream/gcc/testsuite/g++.dg/eh/spec8.C

12 lines
272 B
C

// PR c++/24817
struct exception {};
template <typename T> void foo() throw(exception); // { dg-error "declaration" }
template <typename T> void foo(); // { dg-error "exceptions" }
struct bar
{
template <typename T> friend void foo(); // { dg-error "exceptions" }
};