Files
swift-mirror/test/Interop/Cxx/class/method/Inputs/module.modulemap
zoecarver 474a7cd834 [cxx-interop] Only mark projections of self-contained types as unsafe.
Projections of trivial types and view types aren't unsafe. This matches what was described in the vision document.
2023-07-18 17:42:05 -07:00

17 lines
239 B
Plaintext

module Methods {
header "methods.h"
requires cplusplus
}
module AmbiguousMethods {
header "ambiguous_methods.h"
requires cplusplus
}
module UnsafeProjections {
header "unsafe-projections.h"
requires cplusplus
export *
}