Fix hint text for replace with operator assignment #KT-23559 Fixed

This commit is contained in:
Mon_chi
2018-05-13 14:28:01 +03:00
committed by Mikhail Glukhikh
parent 8c3e787584
commit c49eaf2604
4 changed files with 16 additions and 1 deletions
@@ -0,0 +1,5 @@
// FIX: Replace with '+='
fun foo() {
var x = 0
<caret>x = x + 1
}