blob: 7d9ad42285ed6c5658147fda9d851b17718b0be8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS1573: Parameter `j' has no matching param tag in the XML comment for `Testing.Test.Baz(int, int)'
// Line: 10
// Compiler options: -doc:dummy.xml -warn:4 -warnaserror
namespace Testing
{
public class Test
{
/// <param name='i'>correct</param>
public void Baz (int i, int j) {}
}
}
|