Support KType.javaType in stdlib

#KT-32241 Fixed
This commit is contained in:
Alexander Udalov
2019-10-26 00:00:24 +02:00
committed by Alexander Udalov
parent 55595fe2c6
commit 9e37b62f62
5 changed files with 605 additions and 6 deletions
@@ -0,0 +1,14 @@
/*
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package kotlin.jvm.internal
import java.lang.reflect.Type
import kotlin.reflect.KType
@SinceKotlin("1.4")
public interface KTypeBase : KType {
val javaType: Type?
}