is there a bug with kapt and `abstract var` proper...
# announcements
o
is there a bug with kapt and
abstract var
properties? I have this:
Copy code
sealed class Tag<T> { // note: TagId/SongId classes are inline
    abstract var id: TagId
    abstract var songId: SongId
    abstract var data: T
}
but it only generates a setter for
data
. the other two only have getters
I suspect this has more to do with inline classes -- it looks like changing it to a non-inline class will generate a setter
dropped a comment on the inline classes proposal. seems like it might have to do with mangling
o
@yan @mikhail.zarechenskiy