Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/g++.dg/modules/enum-3_a.C
2023-03-06 14:48:14 +01:00

12 lines
200 B
C

// { dg-additional-options -fmodules-ts }
// from https://godbolt.org/beta/z/V45BSw
export module m0;
// { dg-module-cmi m0 }
namespace m0_ns
{
template <typename T> struct s0 {
enum t { a };
};
}