Extracted test for "Join Lines" from CodeTransformationsTest.

This commit is contained in:
Evgeny Gerashchenko
2014-07-07 16:10:49 +04:00
parent ea20073d4b
commit b1003fc034
33 changed files with 157 additions and 91 deletions
+7
View File
@@ -0,0 +1,7 @@
fun foo(n: Int) {
<caret>val x: String
x = if (n > 0)
"> 0"
else
"<= 0"
}