2002542ad2
This commit includes the basic Java stubs generation infrastructure and the corresponding tests. The main entry point is called Kapt4StubGenerator. Calls to it from production code will be added in a separate commit. #KT-51982
12 lines
219 B
Kotlin
Vendored
12 lines
219 B
Kotlin
Vendored
// CORRECT_ERROR_TYPES
|
|
// FILE: resolved.kt
|
|
import kotlin.io.encoding.*
|
|
|
|
var base64: Base64? = null
|
|
|
|
// FILE: unresolved.kt
|
|
@file:Suppress("UNRESOLVED_REFERENCE")
|
|
import kotlin.io.encoding.*
|
|
|
|
var base65: Base65? = null
|