Imported Upstream version 3.25.0
[platform/upstream/cmake.git] / Tests / RunCMake / CXXModules / sources / module-part-impl.cxx
1 #ifdef _MSC_VER
2 // Only MSVC supports this pattern.
3 module M : part;
4 #else
5 module M;
6 #endif
7
8 import M : internal_part;
9
10 int p()
11 {
12   return i();
13 }