mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
20 lines
1.1 KiB
Swift
20 lines
1.1 KiB
Swift
// RUN: %empty-directory(%t)
|
|
|
|
// Check if fragile Swift interface with struct
|
|
// extensions can be reparsed:
|
|
// RUN: %target-swift-frontend -swift-version 5 -typecheck -emit-module-interface-path %t/UsesCxxStruct.swiftinterface %s -I %S/Inputs -swift-version 5 -enable-experimental-cxx-interop %S/Inputs/namespace-extension-lib.swift
|
|
// RUN: %target-swift-frontend -swift-version 5 -typecheck-module-from-interface %t/UsesCxxStruct.swiftinterface -I %S/Inputs
|
|
// RUN: %FileCheck --input-file=%t/UsesCxxStruct.swiftinterface %s
|
|
// CHECK: -enable-experimental-cxx-interop
|
|
|
|
|
|
// Check if resilient Swift interface with builtin
|
|
// type extensions can be reparsed:
|
|
// RUN: %target-swift-emit-module-interface(%t/ResilientStruct.swiftinterface) %s -I %S/Inputs -enable-library-evolution -swift-version 5 -enable-experimental-cxx-interop %S/Inputs/namespace-extension-lib.swift -DRESILIENT
|
|
// RUN: %target-swift-typecheck-module-from-interface(%t/ResilientStruct.swiftinterface) -I %S/Inputs -DRESILIENT
|
|
// RUN: %FileCheck --input-file=%t/ResilientStruct.swiftinterface %s
|
|
|
|
import Namespaces
|
|
|
|
var x: Namespace.Parent? = nil
|