Improve Create property from Usage

Place generated property next to other properties
 #KT-14886 Fixed
This commit is contained in:
Dmitry Gridin
2019-02-26 18:45:12 +03:00
parent 5d599ee2ff
commit c89d1af9fa
35 changed files with 228 additions and 85 deletions
@@ -0,0 +1,12 @@
// "Create property 'foo'" "true"
// ERROR: Property must be initialized or be abstract
class Test {
val foo1 = 1
fun test(): Int {
return <caret>foo
}
}
val bar = 1