linux-packaging-mono/mcs/tests/test-xml-008.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

25 lines
302 B
C#

// Compiler options: -doc:xml-008.xml
using System;
namespace Testing
{
/// comment without markup on class - it is allowed
public class Test
{
public static void Main ()
{
}
}
/// <6roken> broken markup
public class Test2
{
}
/// <dont-forget-close-tag>
public class Test3
{
}
}