Hey guys! I'm getting a weird error with Kotlin By...
# announcements
l
Hey guys! I'm getting a weird error with Kotlin Bytecode. This got me to an issue with ByteBuddy, and perhaps you can tell me what's going on? Given the dummy class
Copy code
class Foo { 
    lateinit var bar: String
}
Why is the bytecode generated for the setter
Copy code
public final void setBar(@NotNull String var1) {
      Intrinsics.checkParameterIsNotNull(var1, "<set-?>");
      this.bar = var1;
   }