21 references to WRN_UnmatchedTypeParamRefTag
Microsoft.CodeAnalysis.CSharp (4)
Compiler\DocumentationCommentCompiler.cs (1)
1213
diagnostics.Add(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, identifier.Location, identifier, memberSymbol);
Errors\ErrorFacts.cs (2)
321
case ErrorCode.
WRN_UnmatchedTypeParamRefTag
:
1375
or ErrorCode.
WRN_UnmatchedTypeParamRefTag
Generated\ErrorFacts.Generated.cs (1)
112
case ErrorCode.
WRN_UnmatchedTypeParamRefTag
:
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (1)
Semantics\ExtensionTests.cs (1)
43876
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "T").WithArguments("T", "E.extension(int)").WithLocation(3, 57));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (15)
DocumentationComments\CrefTests.cs (10)
4000
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "Q").WithArguments("Q", "C<T, T>"),
4006
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "Q").WithArguments("Q", "C<T, T>.M<U, U>()"),
4203
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "T").WithArguments("T", "C"),
4206
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "T").WithArguments("T", "C.M()"),
4209
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "U").WithArguments("U", "C<T>"),
4212
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "V").WithArguments("V", "C<T>.M<U>()"),
4215
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "U").WithArguments("U", "P<T>"),
4218
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "V").WithArguments("V", "P<T>"),
4221
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "U").WithArguments("U", "P<T>.M1<V>()"),
4224
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "V").WithArguments("V", "P<T>.M1<U>()"));
DocumentationComments\DocumentationCommentCompilerTests.cs (5)
6159
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, includeElement).WithArguments("Y", "OuterClass<X>").WithLocation(3, 5),
6162
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, includeElement).WithArguments("XY", "OuterClass<X>").WithLocation(3, 5),
6171
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, includeElement).WithArguments("XY", "OuterClass<X>.InnerClass<Y>").WithLocation(6, 9),
6183
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, includeElement).WithArguments("XY", "OuterClass<X>.InnerClass<Y>.Foo()").WithLocation(9, 13)
6777
Diagnostic(ErrorCode.
WRN_UnmatchedTypeParamRefTag
, "Q").WithArguments("Q", "D<T, U>"),
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Diagnostics\DiagnosticTest.cs (1)
239
Assert.Equal(2, ErrorFacts.GetWarningLevel(ErrorCode.
WRN_UnmatchedTypeParamRefTag
));