importable.cxx 178 B

1234567891011121314
  1. module;
  2. #include <subdir/header.h>
  3. #ifndef from_subdir_header_h
  4. # error "Define from header found"
  5. #endif
  6. export module importable;
  7. export int from_import()
  8. {
  9. return 0;
  10. }