a341dc704f
^KT-62888 ^KT-62651
13 lines
260 B
Kotlin
Vendored
13 lines
260 B
Kotlin
Vendored
// IGNORE_FE10
|
|
// MODULE: lib
|
|
// MODULE_KIND: LibraryBinary
|
|
// FILE: Lib.kt
|
|
package one
|
|
|
|
class SimpleClass(val constructorProperty: String)
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: usage.kt
|
|
fun usage(instance: one.SimpleClass) {
|
|
instance.constru<caret>ctorProperty
|
|
} |