mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Preserve the warning to use `internal import` instead of `@_implementationOnly` to imports of Swift modules only. This warning can be noisy, limiting it may prevent users from outright learning to ignore it. Typical uses of an `@_implementationOnly` import of a clang module is often for a project internal module instead of a layering concern as we have with Swift module targets. We can leave legacy uses of `@_implementationOnly` in peace for now.
64 lines
2.6 KiB
Swift
64 lines
2.6 KiB
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: split-file %s %t --leading-lines
|
|
|
|
/// Build 2 libs.
|
|
// RUN: %target-swift-frontend -emit-module %t/empty.swift -o %t/SwiftModuleA.swiftmodule \
|
|
// RUN: -enable-library-evolution -swift-version 5
|
|
// RUN: %target-swift-frontend -emit-module %t/empty.swift -o %t/SwiftModuleB.swiftmodule \
|
|
// RUN: -enable-library-evolution -swift-version 5
|
|
|
|
/// Build a client with and without library-evolution.
|
|
// RUN: %target-swift-frontend -typecheck %t/client-non-resilient.swift -I %t -verify
|
|
// RUN: %target-swift-frontend -typecheck %t/client-resilient.swift -I %t -verify \
|
|
// RUN: -enable-library-evolution -swift-version 5
|
|
|
|
/// Some imports are exempt.
|
|
// RUN: %target-swift-frontend -emit-module %t/empty.swift \
|
|
// RUN: -o %t/CCryptoBoringSSL.swiftmodule \
|
|
// RUN: -enable-library-evolution -swift-version 5
|
|
// RUN: %target-swift-frontend -typecheck %t/Crypto.swift -I %t -verify \
|
|
// RUN: -module-name Crypto
|
|
|
|
//--- module.modulemap
|
|
module ClangModuleA {
|
|
header "ClangModuleA.h"
|
|
|
|
module Submodule {
|
|
header "ClangSubmodule.h"
|
|
}
|
|
}
|
|
|
|
module ClangModuleB {
|
|
header "ClangModuleB.h"
|
|
}
|
|
|
|
//--- ClangModuleA.h
|
|
//--- ClangSubmodule.h
|
|
//--- ClangModuleB.h
|
|
|
|
//--- empty.swift
|
|
|
|
//--- client-non-resilient.swift
|
|
@_implementationOnly import SwiftModuleA // expected-warning {{using '@_implementationOnly' without enabling library evolution for 'main' may lead to instability during execution}}
|
|
@_implementationOnly import SwiftModuleA // expected-warning {{using '@_implementationOnly' without enabling library evolution for 'main' may lead to instability during execution}}
|
|
import SwiftModuleB
|
|
|
|
@_implementationOnly import ClangModuleA // expected-warning {{using '@_implementationOnly' without enabling library evolution for 'main' may lead to instability during execution}}
|
|
@_implementationOnly import ClangModuleA.Submodule // expected-warning {{using '@_implementationOnly' without enabling library evolution for 'main' may lead to instability during execution}}
|
|
import ClangModuleB
|
|
|
|
//--- client-resilient.swift
|
|
@_implementationOnly import SwiftModuleA
|
|
// expected-warning @-1 {{'@_implementationOnly' is deprecated, use 'internal import' instead}}
|
|
import SwiftModuleB
|
|
|
|
@_implementationOnly import ClangModuleA
|
|
@_implementationOnly import ClangModuleA.Submodule
|
|
import ClangModuleB
|
|
|
|
//--- Crypto.swift
|
|
@_implementationOnly import SwiftModuleA // expected-warning {{using '@_implementationOnly' without enabling library evolution for 'Crypto' may lead to instability during execution}}
|
|
import SwiftModuleB
|
|
@_implementationOnly import CCryptoBoringSSL
|
|
import ClangModuleB
|