Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/g++.dg/modules/libfn-1_b.C
2023-03-06 14:48:14 +01:00

19 lines
162 B
C

// { dg-additional-options -fmodules-ts }
import foo;
void bar ()
{
thrower ();
}
void baz ()
{
try
{
throw 1;
}
catch (...)
{
}
}