13 lines
176 B
Kotlin
Vendored
13 lines
176 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_EXPRESSION
|
|
|
|
class Unrelated()
|
|
|
|
class Test(val name: String = "") {
|
|
init {
|
|
Unrelated::name
|
|
Unrelated::foo
|
|
}
|
|
|
|
fun foo() {}
|
|
}
|