Files
kotlin-fork/analysis/low-level-api-fir/testdata/lazyResolve/classes/functionInValueClass.kt
T
Roman Golyshev 16cb3064c8 [FIR] Resolve value class constructor to TYPES before using its params
Right now it is the easiest way to ensure that all the parameters are
resolved. After KT-53573 is fixed, we might use `resolvedReturnTypeRef`
on each parameter individually instead

Also, add `toString` implementation to `ValueClassRepresentation`
classes, so they are properly rendered in testdata

^KTIJ-22630 Fixed
2022-08-30 13:49:40 +00:00

5 lines
72 B
Kotlin

@JvmInline
value class Value(val value: Int) {
fun resolveMe() {}
}