KT-11804 J2K: incorrect closing parenthesis position for method split to several lines

#KT-11804 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-08-19 17:58:08 +03:00
parent 20c17fc435
commit 0554e1702c
13 changed files with 83 additions and 27 deletions
@@ -0,0 +1,6 @@
public interface Aaa {
void foo(
String e1,
String e2
);
}
@@ -0,0 +1,6 @@
interface Aaa {
fun foo(
e1: String,
e2: String
)
}
@@ -13,6 +13,7 @@ internal class C {
fun foo4(
p1: Int, p2: Int,
p3: Int, p4: Int) {
p3: Int, p4: Int
) {
}
}