mirror of
https://github.com/apple/swift.git
synced 2025-12-25 12:15:36 +01:00
13 lines
250 B
Swift
13 lines
250 B
Swift
// RUN: %target-swift-remoteast-test-with-sdk %s | FileCheck %s
|
|
|
|
// REQUIRES: swift_interpreter
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
@_silgen_name("printMetadataType")
|
|
func printType(_: Any.Type)
|
|
|
|
printType(NSString.self)
|
|
// CHECK: NSString
|