Area-CompilersBugConcept-Diagnostic Clarityhelp wanted
倉庫指標
- 星標
- (20,414 顆星)
- PR 合併指標
- (平均合併 6天 17小時) (30 天內合併 256 個 PR)
描述
Version Used:
17.1.0 P1.1
Steps to Reproduce:
using System;
public class C
{
public void M(Action x, Action y)
{
_ = (MulticastDelegate)x == y;
}
}
Expected Behavior:
Either no warning, or a more clear warning.
Actual Behavior:
warning CS0252: Possible unintended reference comparison; to get a value comparison, cast the left hand side to type 'MulticastDelegate'