报告主构造函数上的冗余 'constructor' 关键字。
示例:
class Foo constructor(x: Int, y: Int)
在应用快速修复后:
class Foo(x: Int, y: Int)