f283f2db43
Also introduce few new diagnostics: - NONE_APPLICABLE more many inapplicable candidates - HIDDEN for visible candidates
18 lines
235 B
Kotlin
Vendored
18 lines
235 B
Kotlin
Vendored
// FILE: File1.kt
|
|
package pack1
|
|
|
|
private class SomeClass
|
|
|
|
// FILE: File2.kt
|
|
package pack2
|
|
|
|
public open class SomeClass
|
|
|
|
// FILE: Main.kt
|
|
package a
|
|
|
|
import pack1.*
|
|
import pack2.*
|
|
|
|
class X : <!EXPOSED_SUPER_CLASS, HIDDEN!>SomeClass<!>()
|