Hi! Why isn't `companion object val yo = "yo"` th...
# announcements
h
Hi! Why isn't
companion object val yo = "yo"
the same as
companion object { val yo = "yo" }
? The first decompiles to
private final Ljava/lang/String; yo = "yo"
while the latter decompiles to
private final static Ljava/lang/String; yo = "yo"