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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/// Test that the least restricting restricted import takes priority in
/// exportability checks.
// RUN: %empty-directory(%t)
// RUN: split-file %s %t
/// Generate dependencies.
// RUN: %target-swift-frontend -emit-module %t/LibA.swift \
// RUN: -module-name LibA -emit-module-path %t/LibA.swiftmodule \
// RUN: -swift-version 5 -enable-library-evolution
// RUN: %target-swift-frontend -emit-module %t/LibB.swift \
// RUN: -module-name LibB -emit-module-path %t/LibB.swiftmodule \
// RUN: -swift-version 5 -enable-library-evolution -I %t
// RUN: %target-swift-frontend -emit-module %t/LibC.swift \
// RUN: -module-name LibC -emit-module-path %t/LibC.swiftmodule \
// RUN: -swift-version 5 -enable-library-evolution -I %t
// RUN: %target-swift-frontend -typecheck %t/TwoIOI.swift -I %t -verify \
// RUN: -swift-version 5 -enable-library-evolution \
// RUN: -experimental-spi-only-imports -verify
// RUN: %target-swift-frontend -typecheck %t/SPIOnlyAndIOI1.swift -I %t -verify \
// RUN: -swift-version 5 -enable-library-evolution \
// RUN: -experimental-spi-only-imports -verify
// RUN: %target-swift-frontend -typecheck %t/SPIOnlyAndIOI2.swift -I %t -verify \
// RUN: -swift-version 5 -enable-library-evolution \
// RUN: -experimental-spi-only-imports -verify
// RUN: %target-swift-frontend -typecheck %t/TwoSPIOnly.swift -I %t -verify \
// RUN: -swift-version 5 -enable-library-evolution \
// RUN: -experimental-spi-only-imports -verify
// RUN: %target-swift-frontend -typecheck %t/OneSPIOnly1.swift -I %t -verify \
// RUN: -swift-version 5 -enable-library-evolution \
// RUN: -experimental-spi-only-imports -verify
// RUN: %target-swift-frontend -typecheck %t/OneSPIOnly2.swift -I %t -verify \
// RUN: -swift-version 5 -enable-library-evolution \
// RUN: -experimental-spi-only-imports -verify
/// Setup 2 indirect imports of LibA, allowing the same LibA to be imported
/// via 2 different imports from the same file.
//--- LibA.swift
public struct LibAStruct {}
//--- LibB.swift
@_exported import LibA
//--- LibC.swift
@_exported import LibA
//--- TwoIOI.swift
@_implementationOnly import LibB
// expected-warning @-1 {{'@_implementationOnly' is deprecated, use 'internal import' instead}}
@_implementationOnly import LibC
// expected-warning @-1 {{'@_implementationOnly' is deprecated, use 'internal import' instead}}
public func foo(a: LibAStruct) {} // expected-error {{cannot use struct 'LibAStruct' here; 'LibA' has been imported as implementation-only}}
//--- SPIOnlyAndIOI1.swift
@_spiOnly import LibB
@_implementationOnly import LibC
// expected-warning @-1 {{'@_implementationOnly' is deprecated, use 'internal import' instead}}
public func foo(a: LibAStruct) {} // expected-error {{cannot use struct 'LibAStruct' here; 'LibA' was imported for SPI only}}
//--- SPIOnlyAndIOI2.swift
@_implementationOnly import LibB
// expected-warning @-1 {{'@_implementationOnly' is deprecated, use 'internal import' instead}}
@_spiOnly import LibC
public func foo(a: LibAStruct) {} // expected-error {{cannot use struct 'LibAStruct' here; 'LibA' was imported for SPI only}}
//--- TwoSPIOnly.swift
@_spiOnly import LibB
@_spiOnly import LibC
public func foo(a: LibAStruct) {} // expected-error {{cannot use struct 'LibAStruct' here; 'LibA' was imported for SPI only}}
//--- OneSPIOnly1.swift
import LibB
@_spiOnly import LibC
public func foo(a: LibAStruct) {}
//--- OneSPIOnly2.swift
import LibB
@_spiOnly import LibC
public func foo(a: LibAStruct) {}
|