LeoColman
08/23/2019, 4:25 AMclass Foo {
lateinit var bar: String
}
Why is the bytecode generated for the setter
public final void setBar(@NotNull String var1) {
Intrinsics.checkParameterIsNotNull(var1, "<set-?>");
this.bar = var1;
}