3 instantiations of UnboundArgumentErrorTypeSymbol
Microsoft.CodeAnalysis.CSharp (3)
Symbols\UnboundGenericType.cs (3)
55result.Add(TypeWithAnnotations.Create(new UnboundArgumentErrorTypeSymbol(name, errorInfo))); 60public static readonly ErrorTypeSymbol Instance = new UnboundArgumentErrorTypeSymbol(string.Empty, new CSDiagnosticInfo(ErrorCode.ERR_UnexpectedUnboundGenericName)); 74return new UnboundArgumentErrorTypeSymbol(_name, _errorInfo, newData);
7 references to UnboundArgumentErrorTypeSymbol
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_Symbols.cs (2)
1233UnboundArgumentErrorTypeSymbol.CreateTypeArguments( 1371? TypeWithAnnotations.Create(UnboundArgumentErrorTypeSymbol.Instance)
Symbols\UnboundGenericType.cs (3)
39var typeArguments = UnboundArgumentErrorTypeSymbol.CreateTypeArguments( 112UnboundArgumentErrorTypeSymbol? other = t2 as UnboundArgumentErrorTypeSymbol;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (1)
Attributes\AttributeTests_WellKnownAttributes.cs (1)
5013Assert.IsType<UnboundArgumentErrorTypeSymbol>(unbound);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Symbols\TypeTests.cs (1)
1862Assert.IsType<UnboundArgumentErrorTypeSymbol>(symbol.ContainingType.TypeArguments.Single().GetSymbol());