What editor are you seeing the problem in? (e.g. Atom, Visual Studio Code, etc.)
VSCode
What version of the editor are you using?
1.85.1
What color theme are you using?
Dark plus
Repro
notnull, unmanaged, default
class NotNullContainer<T> where T : notnull
{
private unsafe static void DisplaySize<T>() where T : unmanaged
{
Console.WriteLine($"{typeof(T)} is unmanaged and its size is {sizeof(T)} bytes");
}
public override void M<T>(T? item) where T : default { }
}
Please provide a code example and (optionally) a screenshot demonstrating the problem.
Details
What editor are you seeing the problem in? (e.g. Atom, Visual Studio Code, etc.)
What version of the editor are you using?
What color theme are you using?
Dark plus
Repro
notnull
,unmanaged
,default
Please provide a code example and (optionally) a screenshot demonstrating the problem.