cmake/Tests/RunCMake/CXXModules/sources/module-internal-part-impl.cxx
2022-11-16 20:14:03 +01:00

12 lines
126 B
C++

#ifdef _MSC_VER
// Only MSVC supports this pattern.
module M : internal_part;
#else
module M;
#endif
int i()
{
return 0;
}