f283f2db43
Also introduce few new diagnostics: - NONE_APPLICABLE more many inapplicable candidates - HIDDEN for visible candidates
11 lines
314 B
Kotlin
Vendored
11 lines
314 B
Kotlin
Vendored
sealed class Foo(val value: String)
|
|
|
|
class Bar : Foo("OK")
|
|
|
|
sealed class WithPrivateConstructor private constructor(val x: Int) {
|
|
private constructor() : this(42)
|
|
}
|
|
|
|
object First : <!NONE_APPLICABLE!>WithPrivateConstructor<!>() // error
|
|
object Second : <!NONE_APPLICABLE!>WithPrivateConstructor<!>(0) // error
|