summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CXXModules/sources/module-part-impl.cxx
blob: 46d5d9f541a0fc3ed7665b14dbd33a04c18265a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef _MSC_VER
// Only MSVC supports this pattern.
module M : part;
#else
module M;
#endif

import M : internal_part;

int p()
{
  return i();
}