blob: 9d9cc0af5cd90033ca8af271fc0351a687ab4795 [file] [log] [blame]
// { 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;
}
};
};