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

View File

@@ -2,5 +2,7 @@ import foo.Intf
class Impl(): Intf {
override fun getFooBar(): String? = null
override fun getFooBar(): String? {
throw UnsupportedOperationException()
}
}