Xamarin Public Jenkins c042cd0c52 Imported Upstream version 4.2.0.179
Former-commit-id: 4610231f55806d2a05ed69e5ff3faa7336cc1479
2015-11-10 15:03:43 +00:00

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 3.)
// 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 ()
{
}
}