报告与类的属性不对应的默认类构造函数的命名参数。

示例:


  class Person {
      def name
      def age
  }

  // 'firstName' property doesn't exist
  new Person(firstName: "John")