f67f8c393b
#KT-57622 Fixed
11 lines
168 B
Kotlin
Vendored
11 lines
168 B
Kotlin
Vendored
// MUTED_WHEN: K1
|
|
package test
|
|
|
|
data class DataClass(
|
|
val intProp: Int,
|
|
val stringProp: String
|
|
) {
|
|
val nonConstructorProp: Int = 0
|
|
}
|
|
|
|
data object DataObject |