e48c91bba4
Objects/enum entries are treated as variables as before. Test data for private object in superclass was changed because now the object (as opposed to the property) is no longer resolved due to KT-354
9 lines
147 B
Kotlin
9 lines
147 B
Kotlin
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetObjectDeclaration
|
|
package a
|
|
|
|
class A {
|
|
object <caret>O {
|
|
var foo: String = "foo"
|
|
}
|
|
}
|