mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
25 lines
712 B
Swift
25 lines
712 B
Swift
// RUN: rm -rf %t
|
|
// RUN: %target-swift-frontend -assume-parsing-unqualified-ownership-sil -use-jit -playground -parse-stdlib %s -emit-ir -disable-objc-attr-requires-foundation-module | %FileCheck %s
|
|
|
|
// REQUIRES: OS=macosx
|
|
// REQUIRES: CPU=x86_64
|
|
// REQUIRES: objc_interop
|
|
|
|
import Swift
|
|
|
|
@objc class C { }
|
|
|
|
public func anchor() {}
|
|
|
|
anchor()
|
|
|
|
// CHECK-LABEL: define{{( protected)?}} i32 @main
|
|
// CHECK: call void @runtime_registration
|
|
// CHECK: call swiftcc void @_T010playground6anchoryyF
|
|
// CHECK: ret void
|
|
// CHECK: }
|
|
|
|
// CHECK-LABEL: define{{( protected)?}} private void @runtime_registration
|
|
// CHECK: call void @swift_instantiateObjCClass({{.*}} @_T010playground1CCN
|
|
|