Fix for EA-81477 : correct handling of a property without initializer (but with e.g. getter)
(cherry picked from commit 4e2d35a)
This commit is contained in:
committed by
Mikhail Glukhikh
parent
5b328e9042
commit
b44c94a887
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
// "Change 'complex' type to '(Int) -> Long'" "true"
|
||||
|
||||
val complex: (Int) -> String
|
||||
get() = { it.toLong()<caret> }
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// "Change 'complex' type to '(Int) -> Long'" "true"
|
||||
|
||||
val complex: (Int) -> Long
|
||||
get() = { it.toLong() }
|
||||
Reference in New Issue
Block a user