f3e3aab35a
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
20 lines
590 B
C#
20 lines
590 B
C#
// 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.)
|
|
// Line: 13
|
|
// Compiler options: -doc:dummy.xml -warnaserror -warn:1
|
|
|
|
/// Text goes here.
|
|
///
|
|
/// <?xml version = "1.0" encoding = "utf-8" ?>
|
|
/// <configuration>
|
|
/// <appSettings>
|
|
/// <add key = "blah" value = "blech"/>
|
|
/// </appSettings>
|
|
/// </configuration>
|
|
public class Test
|
|
{
|
|
static void Main ()
|
|
{
|
|
}
|
|
}
|
|
|