KT-65897: add exporting of kotlin constructors as Swift constructors #KT-65897 fixed
Merge-request: KT-MR-14734 Merged-by: Artem Olkov <artem.olkov@jetbrains.com>
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
public class Foo {
|
||||
public init?(
|
||||
arg1: Swift.Bool,
|
||||
arg2: Swift.Int8,
|
||||
arg3: Swift.Int16,
|
||||
arg4: Swift.Int32,
|
||||
arg5: Swift.Int64,
|
||||
arg6: Swift.Double,
|
||||
arg7: Swift.Float
|
||||
) {
|
||||
fatalError()
|
||||
}
|
||||
public init(
|
||||
arg1: Swift.UInt8,
|
||||
arg2: Swift.UInt16,
|
||||
arg3: Swift.UInt32,
|
||||
arg4: Swift.UInt64
|
||||
) {
|
||||
fatalError()
|
||||
}
|
||||
public required init(
|
||||
arg1: Swift.UInt8,
|
||||
arg2: Swift.UInt16,
|
||||
arg3: Swift.UInt32,
|
||||
arg4: Swift.UInt64
|
||||
) {
|
||||
fatalError()
|
||||
}
|
||||
public convenience init(
|
||||
arg1: Swift.UInt8,
|
||||
arg2: Swift.UInt16,
|
||||
arg3: Swift.UInt32,
|
||||
arg4: Swift.UInt64
|
||||
) {
|
||||
fatalError()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user