7 references to NotNull
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Constraints.cs (1)
280constraints |= TypeParameterConstraintKind.NotNull;
Symbols\Source\SourceNamedTypeSymbol.cs (4)
670Debug.Assert((constraint.Constraints & (TypeParameterConstraintKind.AllNonNullableKinds | TypeParameterConstraintKind.NotNull)) == 671(mergedKind & (TypeParameterConstraintKind.AllNonNullableKinds | TypeParameterConstraintKind.NotNull))); 696if ((mergedKind & (TypeParameterConstraintKind.AllNonNullableKinds | TypeParameterConstraintKind.NotNull)) != (clause.Constraints & (TypeParameterConstraintKind.AllNonNullableKinds | TypeParameterConstraintKind.NotNull)))
Symbols\Source\SourceTypeParameterSymbol.cs (2)
557return (constraints & TypeParameterConstraintKind.NotNull) != 0; 691return (constraints & TypeParameterConstraintKind.NotNull) != 0;