blob: 48ec8525c4b83946f55c41f19a3c82841e13ff79 [file] [log] [blame]
import test.doGenerateParamAssertions as C
class TestString : C<String>() {
override fun doTest(s: String) { }
}
class TestUnit : C<Unit>() {
override fun doTest(s: Unit) { }
}
fun doTest() {
C.runTest(TestString())
C.runTest(TestUnit())
}