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