Files
kotlin-fork/idea/testData/formatter/GetterAndSetter.kt
T
Nikolay Krasko a0d8ab6db5 KT-1712 Formatting for getters and setters
#KT-1712 fixed
2012-04-04 17:36:55 +04:00

9 lines
131 B
Kotlin
Vendored

class Test {
var test : Int
get () {
return 0
}
set (value) {
throw NotSupportedException()
}
}