fcc4470b74
Merge-request: KT-MR-14734 Merged-by: Artem Olkov <artem.olkov@jetbrains.com>
37 lines
767 B
Swift
Vendored
37 lines
767 B
Swift
Vendored
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()
|
|
}
|
|
} |