2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1570-2.cs
blobdf438c5d557cd48831525cf05947e931ce158733
1 // cs1570-2.cs: XML comment on `T:Testing.Test2' has non-well-formed XML ('summary' is expected Line 3, position 4.)
2 // Line: 22
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
5 using System;
7 namespace Testing
9 /// <summary>
10 /// comment on class
11 /// </summary>
12 public class Test
14 public static void Main ()
19 /// <summary>
20 /// Incorrect comment markup.
21 /// </incorrect>
22 public class Test2
26 /**
27 <summary>
28 another Java-style documentation style
29 </summary>
31 public class Test3