mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
25 lines
1.1 KiB
Swift
25 lines
1.1 KiB
Swift
// REQUIRES: objc_interop
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck -verify -emit-objc-header-path %t/textual-imports.h -Xcc -fmodule-map-file=%S/Inputs/custom-modules/module.modulemap -Xcc -I%S/Inputs/custom-modules/header_subdirectory/ -I%S/Inputs/custom-modules/ -emit-clang-header-nonmodular-includes %s
|
|
// RUN: %FileCheck %s < %t/textual-imports.h
|
|
|
|
// Make sure the include we get is not based on the resolved symlink, but rather the path to the symlink itself.
|
|
|
|
import EmitClangHeaderNonmodularIncludesStressTest
|
|
|
|
public class Bar : Foo {}
|
|
|
|
|
|
// CHECK: #if __has_feature(objc_modules)
|
|
// CHECK: #if __has_feature(objc_modules)
|
|
// CHECK-NEXT: #if __has_warning("-Watimport-in-framework-header")
|
|
// CHECK-NEXT: #pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
|
// CHECK-NEXT: #endif
|
|
// CHECK-NEXT: @import EmitClangHeaderNonmodularIncludesStressTest;
|
|
// CHECK-NEXT: #elif defined(__OBJC__)
|
|
// CHECK: #import <header-symlink.h>
|
|
// CHECK-NEXT: #else
|
|
// CHECK: #include <header-symlink.h>
|
|
// CHECK: #endif
|