-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Open
Labels
Area-IDEhelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it
Milestone
Description
Version Used: VS 18.0.0 Insiders [11109.219]
Steps to Reproduce:
Show the quick info tooltip on each of the extension method invocations.
#nullable enable
static class Cx
{
public static void M()
{
"".M1().M2().M3();
}
extension<T> (T s)
{
private T M1() => s;
internal T M2() => s;
public T M3() => s;
}
}
Expected Behavior:
As all extensions are declared in a nullable context, neither should show that is "not nullable aware".
Actual Behavior:
- Hovering over
M1()
shows the signature and the notice "'M1' is not nullable aware." - Hovering over
M2()
andM3()
shows the signature and no such notice.
ha3flt
Metadata
Metadata
Assignees
Labels
Area-IDEhelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it