I checked the bytecode for ``` class Foo { @J...
# getting-started
u
I checked the bytecode for
Copy code
class Foo {
    @JvmField val bar: String
    init {
        bar = "bar"
    }
}
and for
Copy code
public class FooJava {
    private String bar;

    {
        bar = "bar";
    }
}