[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-xml-006.cs
1 // Compiler options: -doc:xml-006.xml
2 using System;
3
4 namespace Testing
5 {
6         /// <summary>
7         /// comment for enum type
8         /// </summary>
9         public enum EnumTest
10         {
11                 Foo,
12                 Bar,
13         }
14
15         /// <summary>
16         /// comment for enum type
17         /// </incorrect>
18         public enum EnumTest2
19         {
20                 Foo,
21                 Bar,
22         }
23
24         /**
25         <summary>
26         Java style comment for enum type
27         </summary>
28         */
29         public enum EnumTest3
30         {
31                 Foo,
32                 Bar,
33         }
34
35         public class Test
36         {
37                 public static void Main ()
38                 {
39                 }
40         }
41 }
42