Fixed 'Implement members implement functions with no curly braces - not convenient'

#KT-1317 fixed
This commit is contained in:
Evgeny Gerashchenko
2012-02-23 23:00:03 +04:00
parent 6fadca9ac1
commit 8575da228d
5 changed files with 13 additions and 11 deletions
@@ -4,5 +4,7 @@ trait Some {
class SomeOther : Some {
override fun foo(some: Int?): Int = 0
override fun foo(some: Int?): Int {
throw UnsupportedOperationException()
}
}