a8d77887af
This tests that LibraryInfo dependencies affect source files highlighting
17 lines
216 B
Kotlin
Vendored
17 lines
216 B
Kotlin
Vendored
package lib2
|
|
|
|
import lib1.*
|
|
|
|
public class Derived(): Base() {
|
|
public fun derivedFun() {
|
|
}
|
|
}
|
|
|
|
public fun acceptBase(b: Base) {
|
|
}
|
|
|
|
public fun returnBase(): Base = Base()
|
|
|
|
public fun Base.extendBase(): Unit {
|
|
|
|
} |