blob: eb44b8c18ba98bb6fd36a18af89ea04e0b35e294 [file] [log] [blame]
// RUN: %target-swift-frontend -emit-sil %s -use-native-super-method | FileCheck %s
// RN: %target-swift-frontend -emit-sil -sdk %S/Inputs -I %S/Inputs -enable-source-import %s -use-native-super-method | FileCheck %s
// REQUIRES: objc_interop
import Foundation
class MyFunkyDictionary: NSDictionary {
// CHECK-LABEL: sil hidden @_TZFC23super_objc_class_method17MyFunkyDictionary10initializefT_T_
// CHECK: super_method [volatile] %0 : $@thick MyFunkyDictionary.Type, #NSObject.initialize!1.foreign : NSObject.Type -> () -> ()
override class func initialize() {
super.initialize()
}
}