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.
7 lines
179 B
Kotlin
Vendored
7 lines
179 B
Kotlin
Vendored
// This test emulates 'allopen' compiler plugin.
|
|
|
|
@Suppress("INCOMPATIBLE_MODIFIERS")
|
|
open data class ValidatedProperties(
|
|
open val test1: String,
|
|
open val test2: String
|
|
) |