4da9a101cf
(cherry picked from commit 88f9938)
11 lines
229 B
Kotlin
Vendored
11 lines
229 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
class Foo {
|
|
<!UNNECESSARY_LATEINIT!>lateinit<!> var x: String
|
|
|
|
constructor() {
|
|
x = "Foo"
|
|
}
|
|
|
|
constructor(x: String, y: String): <!NONE_APPLICABLE!>this<!>(y.hashCode())
|
|
} |