KT-1712 Formatting for getters and setters

#KT-1712 fixed
This commit is contained in:
Nikolay Krasko
2012-04-04 17:36:55 +04:00
parent 549c464983
commit a0d8ab6db5
13 changed files with 231 additions and 49 deletions
@@ -0,0 +1,9 @@
class Test {
var test : Int
get () {
return 0
}
set (value) {
throw NotSupportedException()
}
}