Formatter: remove unnecessary spaces in value and type parameter lists
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
fun < T > test( a: Int ) = {( a: Int ) -> a }
|
||||
class Test< T >
|
||||
|
||||
fun foo( ) {
|
||||
test< Int >( 12 )
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
fun <T> test(a: Int) = {(a: Int) -> a }
|
||||
class Test<T>
|
||||
|
||||
fun foo() {
|
||||
test<Int>(12)
|
||||
}
|
||||
Reference in New Issue
Block a user