i can PR it in if that's a thing you care about
i can PR it in if that's a thing you care about

valueType? being shorthand for Nullable<valueType> was a mistake imoNullable<T>
varvarvar variable = new()object :^)valueType?Nullable<valueType>Nullable<T>varvarvar variable = new()objectpublic enum Hello
{
Hello
}
public class C
{
public Nullable<int> M(Nullable<Hello> hello)
{
Nullable<Hello> hello2 = hello;
if (!hello2.HasValue)
{
return null;
}
return (int)hello2.GetValueOrDefault();
}
}[assembly: CompilationRelaxations(8)]