Reports a redundant 'constructor' keyword on primary constructors.

Example:


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

After the quick-fix is applied:


  class Foo(x: Int, y: Int)