Updated with review feedback.
[mono.git] / mcs / errors / cs1570-12.cs
1 // CS1570: XML documentation comment on `Test' is not well-formed XML markup (Unexpected XML declaration. The XML declaration must be the first node in the document, and no white space characters are allowed to appear before it. Line 3, position 4.)
2 // Line: 13
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5 /// Text goes here.
6 ///
7 /// <?xml version = "1.0" encoding = "utf-8" ?>
8 /// <configuration>
9 ///     <appSettings>
10 ///         <add key = "blah" value = "blech"/>
11 ///     </appSettings>
12 /// </configuration> 
13 public class Test
14 {    
15     static void Main ()
16     {
17     }
18 }
19