Minor, move irText tests on data classes to a subdirectory

This commit is contained in:
Alexander Udalov
2021-11-26 22:36:17 +01:00
parent a5fa69b8ee
commit 2fbd2e2a15
33 changed files with 135 additions and 102 deletions
@@ -0,0 +1,7 @@
// This test emulates 'allopen' compiler plugin.
@Suppress("INCOMPATIBLE_MODIFIERS")
open data class ValidatedProperties(
open val test1: String,
open val test2: String
)