e131763cb0
Do not initialize synthetic and static fields in constructor.
15 lines
201 B
Kotlin
Vendored
15 lines
201 B
Kotlin
Vendored
class Test {
|
|
class Nested {
|
|
class NestedNested
|
|
}
|
|
|
|
inner class Inner
|
|
|
|
object NestedObject
|
|
|
|
interface NestedInterface
|
|
|
|
enum class NestedEnum {
|
|
BLACK, WHITE
|
|
}
|
|
} |