Format spaces in infix call (KT-12018)
#KT-12018 Fixed
This commit is contained in:
+1
-1
@@ -12,5 +12,5 @@ class Y(val y: Int) {
|
||||
}
|
||||
|
||||
private fun __dummyTestFun__(x1: X, y1: Y) {
|
||||
x1.`x`plus y1.y
|
||||
x1.`x` plus y1.y
|
||||
}
|
||||
+1
-1
@@ -6,5 +6,5 @@ fun test() {
|
||||
}
|
||||
|
||||
private fun __dummyTestFun__(`i`: Int) {
|
||||
`i`plus i
|
||||
`i` plus i
|
||||
}
|
||||
+1
-1
@@ -6,5 +6,5 @@ fun test() {
|
||||
}
|
||||
|
||||
private fun __dummyTestFun__(`0`: Int) {
|
||||
`0`plus 1
|
||||
`0` plus 1
|
||||
}
|
||||
+1
-1
@@ -6,5 +6,5 @@ fun test() {
|
||||
}
|
||||
|
||||
private fun __dummyTestFun__(i: Int) {
|
||||
`i`plus i
|
||||
`i` plus i
|
||||
}
|
||||
Reference in New Issue
Block a user