The `prefer_final_parameters` rule has tests indicating that it _should_ report constructor parameters: ```dart class C { C.badValue(String value): this.value = value; // LINT } ``` but _not_ for field formal parameters: ```dart class C { C.goodValue(this.value); // OK } ``` So, what about super-parameters? Whether it should or shouldn't, there should be a test.