Uniting function parameters of the same type

Why can not I combine setting types in function headers:

Instead of this:

fun f(a: Int, b: Int, c: Int, d: Long)

Use:

fun f(a, b, c: Int, d: Long)

Specifying that types dos not help us to understand what is written but it adds some useless ceremony.