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

15 lines
237 B
C

// { dg-additional-options -fmodules-ts }
export module foo;
// { dg-module-cmi foo }
template<typename _CharT> class basic_ios;
template<typename _CharT>
class basic_streambuf
{
friend class basic_ios<_CharT>;
_CharT member;
};