Implement property uses throw UnsupportedOperationException() instead of default value or ?

This commit is contained in:
Valentin Kipyatkov
2014-12-18 16:39:54 +03:00
parent 367b99a156
commit 5f2446d889
11 changed files with 22 additions and 23 deletions
@@ -4,9 +4,9 @@ trait A {
}
fun some() : A {
return object : A {<caret>
return object : A {
override val method: () -> Unit?
get() = ?
get() = <selection><caret>throw UnsupportedOperationException()</selection>
}
}