Files
swift-mirror/test/Interop/Cxx/stdlib/overlay/Inputs/module.modulemap
Egor Zhdan ef702ad6f6 [cxx-interop] Split some modules in tests
This cleans up the C++ iteration tests and makes sure that we test the setup where a C++ iterator and a C++ collection are defined in different Clang modules.
2024-01-16 17:54:23 +00:00

19 lines
301 B
Plaintext

module ConvertibleToBool {
header "convertible-to-bool.h"
requires cplusplus
export *
}
module CustomIterator {
header "custom-iterator.h"
requires cplusplus
export *
}
module CustomSequence {
header "custom-sequence.h"
header "custom-collection.h"
requires cplusplus
export *
}