c1ea878e52
It's not related to the stubs format changes, but there were no tests for that in symbols resolve tests
14 lines
251 B
Kotlin
Vendored
14 lines
251 B
Kotlin
Vendored
// IGNORE_FE10
|
|
// MODULE: lib
|
|
// MODULE_KIND: LibraryBinary
|
|
// FILE: Lib.kt
|
|
package one
|
|
|
|
@JvmInline
|
|
value class ValueClass(val name: String)
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: usage.kt
|
|
fun usage(instance: one.ValueClass) {
|
|
instance.<caret>hashCode()
|
|
} |