dotnet/roslyn

Bug with ref properties and IDE0052

Open

#72,884 opened on 2024年4月5日

GitHub で見る
 (0 comments) (1 reaction) (1 assignee)C# (4,257 forks)batch import
Area-IDEBugFeature - IDE0052help wanted

Repository metrics

Stars
 (20,414 stars)
PR merge metrics
 (平均マージ 6d 17h) (30d で 256 merged PRs)

説明

Version Used: VS 17.9.0 on .NET 8.0

Steps to Reproduce:

class C1
{
	int a;
	private ref int A => ref a;
	public void Increment() => A++;
}

Diagnostic Id: IDE0052

Expected Behavior:

No diagnostic, since it's read, incremented, then written.

Actual Behavior:

There is a diagnostic claiming it's never been read.

Related:

Potentially https://github.com/dotnet/roslyn/issues/25057

コントリビューターガイド