69c88a8a0a
'allopen' compiler plug-in can make data classes and their members open, which is a compilation error in usual case, but makes sense for Spring and other frameworks that generate proxy-classes.
8 lines
174 B
Kotlin
Vendored
8 lines
174 B
Kotlin
Vendored
data class Test(
|
|
val x: String,
|
|
val y: String
|
|
)
|
|
|
|
// 7 GETFIELD Test\.x
|
|
// 7 GETFIELD Test\.y
|
|
// - get, componentN, copy$default, toString, hashCode, 2 times in equals |