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

18 lines
296 B
C

// { dg-module-do run }
// { dg-additional-options "-fmodules-ts" }
export module billy.bob.thornton;
// { dg-module-cmi "billy.bob.thornton" }
export template<unsigned I> struct Outer
{
template<unsigned J> struct Inner
{
static unsigned m ()
{
return I * J;
}
};
};