- Fix typing enter after import

- Prepared tests for KT-1161 (disabled)
This commit is contained in:
Nikolay Krasko
2012-02-09 18:11:40 +04:00
parent 8eb9649e7f
commit cdac293a8d
11 changed files with 50 additions and 2 deletions
@@ -0,0 +1,2 @@
import java.util.ArrayList
<caret>
@@ -0,0 +1 @@
import java.util.ArrayList<caret>
@@ -0,0 +1,3 @@
fun testParam(
<caret>) {
}
@@ -0,0 +1,3 @@
fun testParam(
<caret>) {
}
@@ -0,0 +1,3 @@
fun testParam(a : String, b : Int,
<caret>) {
}
@@ -0,0 +1,2 @@
fun testParam(a : String, b : Int,<caret>) {
}
+6
View File
@@ -0,0 +1,6 @@
fun some(
a: Int,
b: String, c: Int,
d: String, e: Int
) {
}
@@ -0,0 +1,6 @@
fun some(
a: Int,
b: String, c: Int,
d: String, e: Int
) {
}