f283f2db43
Also introduce few new diagnostics: - NONE_APPLICABLE more many inapplicable candidates - HIDDEN for visible candidates
12 lines
203 B
Kotlin
Vendored
12 lines
203 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
class Foo {
|
|
lateinit var x: String
|
|
|
|
constructor() {
|
|
x = "Foo"
|
|
}
|
|
|
|
constructor(x: String, y: String): <!NONE_APPLICABLE!>this<!>(y.hashCode())
|
|
}
|