blob: 23ebfde701c3a218301d41de19c4b89aa8040c3e [file] [log] [blame]
// { dg-additional-options -fmodules-ts }
export module foo;
// { dg-module-cmi foo }
template <typename T> class TPL
{
template <typename U> friend void foo (U);
};
template class TPL<char>;
template <typename V> void foo (V x)
{
}