[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs1570-8.cs
1 // CS1570: XML documentation comment on `Testing.Test.Constant2' is not well-formed XML markup (The 'summary' start tag on line 1 position 3 does not match the end tag of 'invalid'. Line 3, position 4.)
2 // Line: 19
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
4
5 using System;
6
7 namespace Testing
8 {
9         public class Test
10         {
11                 /// <summary>
12                 /// invalid comment for const declaration
13                 /// </invalid>
14                 const string Constant2 = "CONSTANT STRING";
15         }
16 }
17