Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1574-8.cs
1 // CS1574: XML comment on `Test' has cref attribute `Format()' that could not be resolved
2 // Line: 5
3 // Compiler options: -doc:dummy.xml -warnaserror
4 /// <summary>
5 /// <see cref="Format()" />
6 /// <see cref="Test()" />
7 /// </summary>
8 public class Test {
9   static void Main () {
10   }
11
12   /// <summary />
13   public Test (string a) {
14   }
15
16   /// <summary />
17   public static void Format (object a)
18   {
19   }
20 }
21