eol
[mcs.git] / tests / test-xml-006.cs
blob217a982111a8997bf262a3dff503dacf3ada7a52
1 // Compiler options: -doc:xml-006.xml
2 using System;
4 namespace Testing
6 /// <summary>
7 /// comment for enum type
8 /// </summary>
9 public enum EnumTest
11 Foo,
12 Bar,
15 /// <summary>
16 /// comment for enum type
17 /// </incorrect>
18 public enum EnumTest2
20 Foo,
21 Bar,
24 /**
25 <summary>
26 Java style comment for enum type
27 </summary>
29 public enum EnumTest3
31 Foo,
32 Bar,
35 public class Test
37 public static void Main ()