3 references to GetNullableUnderlyingType
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\TypeTests.cs (2)
1708Assert.Equal(TypeKind.Enum, memType.GetNullableUnderlyingType().TypeKind); 1785Assert.Same(comp.GetSpecialType(SpecialType.System_Decimal), ((ITypeSymbol)tinfo.ConvertedType).GetNullableUnderlyingType());
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
Extensions.cs (1)
728return type.IsNullableType() ? type.GetNullableUnderlyingType() : type;