Files
kotlin/idea/testData/codeInsight/generate/equalsWithHashCode/multipleVarsNullable.kt
2015-10-17 00:24:37 +03:00

7 lines
95 B
Kotlin
Vendored

class A(val n: Int?, val s: String) {<caret>
val f: Float? = null
fun foo() {
}
}