Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/genericRawSignatures.kt
T
Alexander Udalov ebb9659e03 Add mode to run kapt with JVM IR, use in tests
Currently JVM IR is not supported in kapt, so almost all tests are
failing, and thus are muted with IGNORE_BACKEND.

 #KT-49682
2022-02-08 20:15:13 +01:00

7 lines
134 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
class GenericRawSignatures {
fun <T> genericFun(): T? = null
fun nonGenericFun(): String? = null
}