-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathinclude-underlying.swift
15 lines (11 loc) · 1.04 KB
/
include-underlying.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// REQUIRES: objc_interop
// RUN: %empty-directory(%t)
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -parse-as-library %s -typecheck -emit-objc-header-path %t/emit.h -disable-objc-attr-requires-foundation-module -import-objc-header %S/Inputs/CoreGraphics-Bridging-Header.h -import-underlying-module -module-name CoreGraphics -bridging-header-directory-for-print ""
// RUN: %FileCheck -check-prefix=CHECK-DEFAULT %s < %t/emit.h
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -parse-as-library %s -typecheck -emit-objc-header-path %t/emit.h -disable-objc-attr-requires-foundation-module -import-objc-header %S/Inputs/CoreGraphics-Bridging-Header.h -import-underlying-module -module-name CoreGraphics -bridging-header-directory-for-print "Headers/PrivateHeaders/"
// RUN: %FileCheck -check-prefix=CHECK-DIR %s < %t/emit.h
@objc public class X: UIColor {
@objc public func draw(_: UIColor) { }
}
// CHECK-DEFAULT: #import "CoreGraphics-Bridging-Header.h"
// CHECK-DIR: #import "Headers/PrivateHeaders/CoreGraphics-Bridging-Header.h"