2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1570.cs
blob7ff211e1c3a040ada98aadcd781bdf46f889b79c
1 // cs1570.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 -warnaserror -warn:1
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