9d8cfd04d9
#KT-6291 Fixed
9 lines
126 B
Plaintext
9 lines
126 B
Plaintext
// SUGGESTED_NAMES: i, getX
|
|
class A {
|
|
val x = i()
|
|
val y = i()
|
|
|
|
private fun i(): Int {
|
|
return 1 + 1
|
|
}
|
|
} |