module-internal-part-impl.cxx 126 B

1234567891011
  1. #ifdef _MSC_VER
  2. // Only MSVC supports this pattern.
  3. module M : internal_part;
  4. #else
  5. module M;
  6. #endif
  7. int i()
  8. {
  9. return 0;
  10. }