mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
537 B
Swift
15 lines
537 B
Swift
// RUN: %target-swift-frontend -emit-sil %s | %FileCheck %s
|
|
// RUN: %target-swift-frontend -emit-sil -I %S/Inputs -enable-source-import %s | %FileCheck %s
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
class MyFunkyDictionary: NSDictionary {
|
|
// CHECK-LABEL: sil hidden @_T023super_objc_class_method17MyFunkyDictionaryC10initializeyyFZ
|
|
// CHECK: super_method [volatile] %0 : $@thick MyFunkyDictionary.Type, #NSObject.initialize!1.foreign : (NSObject.Type) -> () -> ()
|
|
override class func initialize() {
|
|
super.initialize()
|
|
}
|
|
}
|
|
|