Tests for Java name resolution in the IDE

#KT-3337 In Progress
LightClasses: class object's property getter unresolved in Java, but compiles OK
This commit is contained in:
Andrey Breslav
2013-02-14 20:14:49 +04:00
parent 15938e3d28
commit 179456cd0b
3 changed files with 66 additions and 0 deletions
@@ -0,0 +1,15 @@
class WithClassObject {
class object {
fun foo() {}
val value: Int = 0
val valueWithGetter: Int
get() = 1
var variable: Int = 0
var variableWithAccessors: Int
get() = 0
set(v) {}
}
}