for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs1573.cs
blob7d9ad42285ed6c5658147fda9d851b17718b0be8
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
5 namespace Testing
7 public class Test
9 /// <param name='i'>correct</param>
10 public void Baz (int i, int j) {}