copying the latest Sys.Web.Services from trunk.
[mono.git] / mcs / errors / cs1570.cs
1 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
2 using System;
3
4 namespace Testing
5 {
6         /// <summary>
7         /// comment on class
8         /// </summary>
9         public class Test
10         {
11                 public static void Main ()
12                 {
13                 }
14         }
15
16         /// <summary>
17         /// Incorrect comment markup.
18         /// </incorrect>
19         public class Test2
20         {
21         }
22
23         /**
24                 <summary>
25                 another Java-style documentation style
26                 </summary>
27         */
28         public class Test3
29         {
30         }
31 }
32