Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-xml-010.cs
1 // Compiler options: -doc:xml-010.xml
2 using System;
3
4 namespace Testing
5 {
6         public class Test
7         {
8                 /// <summary>
9                 /// comment for const declaration
10                 /// </summary>
11                 const string Constant = "CONSTANT STRING";
12
13                 /// <summary>
14                 /// invalid comment for const declaration
15                 /// </invalid>
16                 const string Constant2 = "CONSTANT STRING";
17
18                 /**
19                 <summary>
20                 Javaism comment for const declaration
21                 </summary>
22                 */
23                 const string Constant3 = "CONSTANT STRING";
24
25                 public static void Main ()
26                 {
27                 }
28         }
29 }
30