Reports redundant constructor keywords on primary constructors.

Example:


  class Foo constructor(x: Int, y: Int)

After the quick-fix is applied:


  class Foo(x: Int, y: Int)