710a8f4e0f
Unfortunately, we have to check callables even if the class is inaccessible. ^KT-58719 Fixed
23 lines
397 B
Kotlin
Vendored
23 lines
397 B
Kotlin
Vendored
// ISSUE: KT-58719
|
|
|
|
// MODULE: a
|
|
// FILE: pagind/QueryPagingSource.kt
|
|
|
|
package pagind
|
|
|
|
internal class QueryPagingSource<Key : Any, RowType : Any>
|
|
|
|
fun <RowType : Any> QueryPagingSource(randomParam: Int) {}
|
|
|
|
// MODULE: b(a)
|
|
// FILE: Main.kt
|
|
|
|
package main
|
|
|
|
import pagind.QueryPagingSource
|
|
|
|
fun test() {
|
|
QueryPagingSource<Int>(10)
|
|
<!INVISIBLE_REFERENCE!>QueryPagingSource<!><Int, String>()
|
|
}
|