mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
24 lines
1.6 KiB
Swift
24 lines
1.6 KiB
Swift
// RUN: not %target-swift-frontend(mock-sdk: %clang-importer-sdk) -Xcc -include -Xcc %S/Inputs/Xcc_include.h -typecheck %s 2>&1 | %FileCheck -check-prefix=CHECK-INCLUDE-ONLY %s
|
|
// RUN: not %target-swift-frontend(mock-sdk: %clang-importer-sdk) -Xcc -include -Xcc %S/Inputs/Xcc_include.h -enable-objc-interop -import-objc-header %S/../../Inputs/empty.swift -typecheck %s 2>&1 | %FileCheck -check-prefix=CHECK-INCLUDE-PLUS-BRIDGING %s
|
|
// RUN: not %target-swift-frontend(mock-sdk: %clang-importer-sdk) -Xcc -include -Xcc %S/Inputs/Xcc_include.h -F %S/Inputs/mixed-target/ -module-name Mixed -import-underlying-module -typecheck %s -enable-objc-interop -disable-objc-attr-requires-foundation-module 2>&1 | %FileCheck -check-prefix=CHECK-INCLUDE-FRAMEWORK %s
|
|
// RUN: not %target-swift-frontend(mock-sdk: %clang-importer-sdk) -Xcc -include -Xcc %S/Inputs/this_header_does_not_exist.h -typecheck %s 2>&1 | %FileCheck -check-prefix=CHECK-INCLUDE-MISSING %s
|
|
|
|
// CHECK-INCLUDE-MISSING: error: '{{.*}}this_header_does_not_exist.h' file not found
|
|
|
|
func test() {
|
|
// CHECK-INCLUDE-ONLY: error: cannot find 'includedConst' in scope
|
|
// CHECK-INCLUDE-PLUS-BRIDGING-NOT: cannot find 'includedConst' in scope
|
|
// CHECK-INCLUDE-FRAMEWORK: error: cannot find 'includedConst' in scope
|
|
_ = includedConst
|
|
|
|
// CHECK-INCLUDE-ONLY: error: cannot find 'errSecSuccess' in scope
|
|
// CHECK-INCLUDE-PLUS-BRIDGING: error: cannot find 'errSecSuccess' in scope
|
|
// CHECK-INCLUDE-FRAMEWORK: error: cannot find 'errSecSuccess' in scope
|
|
_ = errSecSuccess
|
|
|
|
#if FRAMEWORK
|
|
// CHECK-INCLUDE-FRAMEWORK-NOT: error: cannot find 'Base' in scope
|
|
_ = Base()
|
|
#endif
|
|
}
|