Introduce Variable: Skip leading/trailing comments inside selection

#KT-13054 Fixed
This commit is contained in:
Alexey Sedunov
2016-07-26 18:21:06 +03:00
parent 00b6839e59
commit 8a9a3285de
8 changed files with 59 additions and 7 deletions
@@ -0,0 +1,8 @@
fun foo(x: Boolean) {
}
fun bar() {
val x = true
foo(/* 1 */x/* 2 */)
}