2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1570-6.cs
blobface0f59783446d3bb9e32a5ac6181ebbbd08bb2
1 // cs1570-6.cs: XML comment on `T:Testing.MyDelegate2' has non-well-formed XML ('summary' is expected Line 3, position 4.)
2 // Line: 17
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
5 using System;
7 namespace Testing
9 /// <summary>
10 /// comment for delegate type
11 /// </summary>
12 public delegate void MyDelegate (object o, EventArgs e);
14 /// <summary>
15 /// comment for delegate type
16 /// </incorrect>
17 public delegate void MyDelegate2 (object o, EventArgs e);
19 /**
20 <summary>
21 Javadoc comment for delegate type
22 </summary>
24 public delegate void MyDelegate3 (object o, EventArgs e);
26 public class Test
28 public static void Main ()