Files
swift-mirror/test/Interop/Cxx/reference/Inputs/module.modulemap
Puyan Lotfi 84a69c4143 [C++-Interop] Import const &T function parameters as @in_guaranteed
When passing value types as a const-ref to a C++ API, ensure that the
caller is tasked with handling the lifetime of the instance passed in.
2022-09-12 16:27:27 -04:00

22 lines
361 B
Plaintext

module Reference {
header "reference.h"
requires cplusplus
}
module Closures {
header "closures.h"
requires cplusplus
}
module ConstRefParameter {
header "const-ref-parameter.h"
requires objc
requires cplusplus
}
module ConstRefCxxObjCCtorInitParameter {
header "reference-silgen-cxx-objc-ctors+init.h"
requires objc
requires cplusplus
}