mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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.
19 lines
301 B
Plaintext
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 *
|
|
}
|