Files
kotlin-fork/native/native.tests/testData/framework/kt57791/kt57791.swift
T
2024-02-05 16:06:34 +00:00

21 lines
403 B
Swift
Vendored

import Foundation
import Kt57791
class FooImpl : Foo {
func bar() -> String? { "zzz" }
}
func testKt57791() throws {
try assertTrue(Kt57791Kt.foobar(foo: FooImpl()))
}
class Kt57791Tests : TestProvider {
var tests: [TestCase] = []
init() {
providers.append(self)
tests = [
TestCase(name: "Kt57791", method: withAutorelease(testKt57791)),
]
}
}