Files
kotlin-fork/plugins/kapt3/testData/converter/nonExistentClass.kt
T

12 lines
314 B
Kotlin
Vendored

// NON_EXISTENT_CLASS
@Suppress("UNRESOLVED_REFERENCE")
object NonExistentType {
val a: ABCDEF? = null
val b: List<ABCDEF>? = null
val c: (ABCDEF) -> Unit = { f -> }
val d: ABCDEF<String, (List<ABCDEF>) -> Unit>? = null
fun a(a: ABCDEF, s: String): ABCDEF {}
fun b(s: String): ABCDEF {}
}