mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* spelling: absolute Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: ambiguous Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: attempting Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: attrs Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: dependency Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: extract Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: function Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: interface Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: mandatory Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: nonexistent Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: particular Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: related Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: signature Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: specifies Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: that Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: the Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * spelling: without Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
61 lines
2.1 KiB
Swift
61 lines
2.1 KiB
Swift
// RUN: %empty-directory(%t)
|
|
|
|
// This test has two purposes. This first block just tests that we serialize
|
|
// the -enable-private-imports flag correctly...
|
|
|
|
// RUN: %target-swift-frontend -emit-module -DBASE -o %t %s
|
|
// RUN: llvm-bcanalyzer -dump %t/private_import.swiftmodule > %t/private_import.dump.txt
|
|
// RUN: %FileCheck -check-prefix=CHECK -check-prefix=NO-PRIVATE-IMPORT %s < %t/private_import.dump.txt
|
|
|
|
// RUN: %target-build-swift -module-name private_import -emit-module -o %t -enable-private-imports %S/Inputs/private_import_other.swift %S/Inputs/private_import_other_2.swift
|
|
// RUN: llvm-bcanalyzer -dump %t/private_import.swiftmodule > %t/private_import.dump.txt
|
|
// RUN: %FileCheck -check-prefix=CHECK -check-prefix=PRIVATE-IMPORT %s < %t/private_import.dump.txt
|
|
// RUN: %FileCheck -check-prefix=NEGATIVE %s < %t/private_import.dump.txt
|
|
|
|
// RUN: %target-swift-frontend -emit-module -DCLIENT -o %t -enable-private-imports %s -module-name client -I %t
|
|
// RUN: %target-swift-frontend -emit-sil -DMAIN %s -module-name main -I %t > /dev/null
|
|
|
|
// CHECK: <MODULE_BLOCK {{.*}}>
|
|
// PRIVATE-IMPORT: <ARE_PRIVATE_IMPORTS_ENABLED abbrevid={{[0-9]+}}/>
|
|
// NO-PRIVATE-IMPORT-NOT: ARE_PRIVATE_IMPORTS_ENABLED
|
|
// CHECK: </MODULE_BLOCK>
|
|
// CHECK-NOT: <MODULE_BLOCK {{.*}}>
|
|
|
|
// NEGATIVE-NOT: UnknownCode
|
|
|
|
#if BASE
|
|
#elseif CLIENT
|
|
|
|
@_private(sourceFile: "private_import_other.swift") import private_import
|
|
|
|
extension Base {
|
|
private func foo() {}
|
|
}
|
|
|
|
public func unrelated() {}
|
|
|
|
// This should not conflict with Other from private_import_other_2.swift.
|
|
struct Other {}
|
|
#elseif MAIN
|
|
|
|
@_private(sourceFile: "private_import_other.swift") import private_import
|
|
@_private(sourceFile: "private_import.swift") import client
|
|
|
|
extension Internal {
|
|
mutating func set() {
|
|
self.internalVarWithPrivateSetter = 1
|
|
self.internalVarWithFilePrivateSetter = 1
|
|
self.publicVarWithPrivateSetter = 1
|
|
self.publicVarWithFilePrivateSetter = 1
|
|
}
|
|
}
|
|
|
|
Base().foo()
|
|
// This should not be ambiguous.
|
|
Base().bar()
|
|
// This should not conflict with the second declaration in
|
|
// private_import_other_2.swift.
|
|
Value().foo()
|
|
unrelated()
|
|
#endif
|