dotnet/roslyn
Fix name violation for record parameters does not update usages
オープン
#47,175 opened on 2020/08/27
Area-IDEBugFeature - Recordshelp wanted
Repository metrics
- Stars
- (20,414 個のスター)
- PR merge metrics
- (平均マージ 6d 17h) (30d で 256 merged PRs)
説明
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; }