Convert Function to Property: Forbid for properties with both initializer and getter

#KT-23293 Fixed
This commit is contained in:
Alexey Sedunov
2018-03-16 17:11:00 +03:00
parent 43b4a496e3
commit 0a0043a851
3 changed files with 12 additions and 1 deletions
@@ -0,0 +1,5 @@
// IS_APPLICABLE: false
val <caret>foo = 1
get() {
return field
}