Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1573.cs
1 // CS1573: Parameter `j' has no matching param tag in the XML comment for `Testing.Test.Baz(int, int)'
2 // Line: 10
3 // Compiler options: -doc:dummy.xml -warn:4 -warnaserror
4
5 namespace Testing
6 {
7         public class Test
8         {
9                 /// <param name='i'>correct</param>
10                 public void Baz (int i, int j) {}
11         }
12 }