7 references to NotNull
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Constraints.cs (1)
281constraints |= TypeParameterConstraintKind.NotNull;
Symbols\Source\SourceNamedTypeSymbol.cs (4)
675Debug.Assert((constraint.Constraints & (TypeParameterConstraintKind.AllNonNullableKinds | TypeParameterConstraintKind.NotNull)) == 676(mergedKind & (TypeParameterConstraintKind.AllNonNullableKinds | TypeParameterConstraintKind.NotNull))); 701if ((mergedKind & (TypeParameterConstraintKind.AllNonNullableKinds | TypeParameterConstraintKind.NotNull)) != (clause.Constraints & (TypeParameterConstraintKind.AllNonNullableKinds | TypeParameterConstraintKind.NotNull)))
Symbols\Source\SourceTypeParameterSymbol.cs (2)
558return (constraints & TypeParameterConstraintKind.NotNull) != 0; 731return (constraints & TypeParameterConstraintKind.NotNull) != 0;