Check for ClassKind in getClassifier() and getObjectDescriptor() implementations in java scopes

# KT-3124 fixed
This commit is contained in:
Pavel V. Talanov
2012-12-05 20:53:02 +04:00
parent 0fea6822c3
commit ad848f2ebc
7 changed files with 57 additions and 20 deletions
@@ -0,0 +1,6 @@
//This a test for blinking bug from KT-3124
package some
public object SOME_OBJECT {
}
@@ -0,0 +1,7 @@
//This a test for blinking bug from KT-3124
import some.SOME_OBJECT
fun main(args: Array<String>) {
val a = SOME_OBJECT
}