a8d77887af
This tests that LibraryInfo dependencies affect source files highlighting
9 lines
114 B
Kotlin
Vendored
9 lines
114 B
Kotlin
Vendored
package lib1
|
|
|
|
public open class Base {
|
|
public open fun baseFun() {
|
|
}
|
|
}
|
|
|
|
public fun acceptBase(b: Base) {
|
|
} |