Add Java symbol resolve in default star importing scope
Related to KT-24098
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
@Volatile
|
||||
var xx: Int = 2
|
||||
|
||||
@Synchronized
|
||||
fun foo() {}
|
||||
@@ -0,0 +1,6 @@
|
||||
FILE: concurrent.kt
|
||||
@R|kotlin/jvm/Volatile|() public? final? property xx(var): R|kotlin/Int| = STUB
|
||||
public? get(): R|kotlin/Int|
|
||||
public? set(value: R|kotlin/Int|): R|kotlin/Unit|
|
||||
@R|kotlin/jvm/Synchronized|() public? final? function foo(): R|error: Not supported: FirImplicitTypeImpl| {
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
import kotlin.reflect.KClass
|
||||
|
||||
val javaClass: Class<String> = String::class.java
|
||||
val kotlinClass: KClass<String> = String::class
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
FILE: reflectionClass.kt
|
||||
public? final? property javaClass(val): R|java/lang/Class<kotlin/String>| = STUB
|
||||
public? get(): R|java/lang/Class<kotlin/String>|
|
||||
public? final? property kotlinClass(val): R|kotlin/reflect/KClass<kotlin/String>| = STUB
|
||||
public? get(): R|kotlin/reflect/KClass<kotlin/String>|
|
||||
Reference in New Issue
Block a user