KT-8716 Exception on attempt to implement function

#KT-8716 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-08-07 20:11:21 +03:00
parent c943ec104d
commit 377201bbcd
8 changed files with 66 additions and 17 deletions
@@ -0,0 +1,3 @@
class C : (String) -> Boolean {
<caret>
}
@@ -0,0 +1,5 @@
class C : (String) -> Boolean {
override fun invoke(p1: String): Boolean {
<selection><caret>throw UnsupportedOperationException()</selection>
}
}