1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
// RUN: %empty-directory(%t)
// RUN: split-file %s %t
// RUN: %target-swift-frontend -parse-as-library %platform-module-dir/Swift.swiftmodule/%module-target-triple.swiftinterface -enable-library-evolution -disable-objc-attr-requires-foundation-module -typecheck -module-name Swift -parse-stdlib -enable-experimental-cxx-interop -clang-header-expose-decls=has-expose-attr -emit-clang-header-path %t/Swift.h -experimental-skip-all-function-bodies
// RUN: %target-swift-frontend -typecheck %t/use-cxx-types.swift -typecheck -module-name UseCxx -emit-clang-header-path %t/UseCxx.h -I %t -enable-experimental-cxx-interop -clang-header-expose-decls=all-public
// RUN: %target-interop-build-clangxx -std=c++20 -c %t/use-swift-cxx-types.cpp -I %t -o %t/swift-cxx-execution.o -g
// RUN: %target-interop-build-swift %t/use-cxx-types.swift -o %t/swift-cxx-execution -Xlinker %t/swift-cxx-execution.o -module-name UseCxx -Xfrontend -entry-point-function-name -Xfrontend swiftMain -I %t -g
// RUN: %target-codesign %t/swift-cxx-execution
// RUN: %target-run %t/swift-cxx-execution
// REQUIRES: executable_test
//--- header.h
enum class SomeEnum {
first,
second
};
//--- module.modulemap
module CxxTest {
header "header.h"
requires cplusplus
}
//--- use-cxx-types.swift
import CxxTest
public class SomethingSwift {
public var someEnum: SomeEnum { get { return .first } }
public init() {}
}
//--- use-swift-cxx-types.cpp
#include "header.h"
#include "Swift.h"
#include "UseCxx.h"
#include <assert.h>
class SomethingCxx {
public:
SomethingCxx(UseCxx::SomethingSwift swiftPart): _swiftPart(swiftPart) { }
SomeEnum getSomeEnum() { return _swiftPart.getSomeEnum(); }
private:
UseCxx::SomethingSwift _swiftPart;
};
int main() {
auto sp = UseCxx::SomethingSwift::init();
auto sc = SomethingCxx(sp);
auto e = sc.getSomeEnum();
assert(e == SomeEnum::first);
return 0;
}
|