2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / xml-002.cs
1 // Compiler options: -doc:xml-002.xml
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. See <see cref="T:Testing.Test" /> too.
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                 /// indentation level test <seealso
33                 ///     cref="T:Testing.Test" />.
34 public class Test4
35 {
36 }
37
38 }
39