Files
swift-mirror/test/ModuleInterface/exported-module-name.swift
Becca Royal-Gordon 1f008fb0d0 [ModuleInterface] Enable module selectors by default
And update tests to use them.

This commit depends on fixes in swiftlang/swift PRs #86905, #87129, and #87130.

Fixes rdar://169749886.
2026-02-20 00:35:23 -08:00

20 lines
895 B
Swift

// RUN: %empty-directory(%t)
// RUN: %target-swift-emit-module-interface(%t/CoreKitClient.swiftinterface) %s -module-name CoreKitClient -I %S/Inputs/exported-module-name-before
// RUN: %FileCheck -implicit-check-not BAD %s < %t/CoreKitClient.swiftinterface
// Test that we can rebuild it even when the "export as" module goes away.
// RUN: %target-swift-typecheck-module-from-interface(%t/CoreKitClient.swiftinterface) -module-name CoreKitClient -I %S/Inputs/exported-module-name-after
// CHECK: import CoreKit
import CoreKit
// CHECK-LABEL: public struct CKThingWrapper : Swift::RawRepresentable {
public struct CKThingWrapper: RawRepresentable {
public var rawValue: CKThing
public init(rawValue: CKThing) {
self.rawValue = rawValue
}
// Note that this is CoreKit.CKThing, not ExportAsCoreKit.CKThing
// CHECK: public typealias RawValue = CoreKit::CKThing
} // CHECK: {{^}$}}