Reports named arguments of a default class constructor call which don't correspond to properties of this class.

Example:


  class Person {
      def name
      def age
  }

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