dart-lang/linter

[Wildcard Variables] support for `avoid_types_as_parameter_names`

pq opened this issue · 1 comments

pq commented

This is wrongly reporting:

class C<_> {
  var _;
  C.c(this._, _);
}