blob: 986883847f1b520b32bed3d71cd563a2a1d8d7d4 [file] [log] [blame]
// RUN: %empty-directory(%t)
// RUN: %target-build-swift -lswiftSwiftReflectionTest %s -o %t/existentials_objc
// RUN: %target-codesign %t/existentials_objc
// RUN: %target-run %target-swift-reflection-test %t/existentials_objc > %t.txt
// RUN: grep SkipTheTest %t.txt || %FileCheck %s < %t.txt
// REQUIRES: objc_interop
// REQUIRES: executable_test
// UNSUPPORTED: use_os_stdlib
import Foundation
/*
This file pokes at the swift_reflection_projectExistential API
of the SwiftRemoteMirror library.
*/
import SwiftReflectionTest
class MyClass<T> {}
if #available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) {
// Imported class wrapped in AnyObject
// CHECK: Type reference:
// CHECK: (objective_c_class name=NSObject)
reflect(object: NSObject())
// Tagged pointer wrapped in AnyObject
// CHECK: Type reference:
// CHECK: (objective_c_class name=__NSCFNumber)
reflect(object: NSNumber(123))
// Objective-C protocol:
// CHECK: Type info:
// CHECK: $sSo9NSCopying_Xl
reflect(any: { () -> NSCopying in NSString("abc") }())
// Generic types involving ObjC and CF types.
// CHECK: Type info:
// CHECK: Mangled name: $s17existentials_objc7MyClassCySo8NSStringCG
// CHECK: Demangled name: existentials_objc.MyClass<__C.NSString>
reflect(any: MyClass<NSString>())
// CHECK: Type info:
// CHECK: Mangled name: $s17existentials_objc7MyClassCySo11CFStringRefaG
// CHECK: Demangled name: existentials_objc.MyClass<__C.CFStringRef>
reflect(any: MyClass<CFString>())
} else {
// The Swift 5.0 libraries don't support this test.
class SkipTheTest {}
reflect(object: SkipTheTest())
}
doneReflecting()