`private val A` will not be compiled to `private s...
# announcements
b
private val A
will not be compiled to
private static final A
.
private val A
just overrides the
set()
method and disallows setting the value (as any access in kotlin uses get/set).