Reports redundant initializers for local variables.
Example:
fun example() { var local = 42 // Initializer is redundant local = 0 println(local) }