Files
kotlin-fork/compiler/testData/ir/irText/classes/dataClasses/openDataClass.kt
T
2023-03-22 15:18:17 +00:00

11 lines
235 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JS_IR_ES6
// This test emulates 'allopen' compiler plugin.
@Suppress("INCOMPATIBLE_MODIFIERS")
open data class ValidatedProperties(
open val test1: String,
open val test2: String
)