dotnet/roslyn
Fix name violation for record parameters does not update usages
Offen
#47.175 geöffnet am 27.08.2020
Area-IDEBugFeature - Recordshelp wanted
Repository-Metriken
- Stars
- (20.414 Sterne)
- PR-Merge-Metriken
- (Durchschn. Merge 6T 17h) (256 gemergte PRs in 30 T)
Beschreibung
Version Used: VS 16.8 preview 2
Steps to Reproduce:
public record Record(int i) { int M() => i; }
has diagnostic:
IDE1006: Naming rule violation: These words must begin with upper case characters:
The provided code fix does not update usages leading to the non compiling code:
public record Record(int I) { int M() => i; }