[mcs] Update logic when checking for tuple element names when overriding inherited...
[mono.git] / mcs / tests / test-xml-008.cs
1 // Compiler options: -doc:xml-008.xml
2 using System;
3
4 namespace Testing
5 {
6         /// comment without markup on class - it is allowed
7         public class Test
8         {
9                 public static void Main ()
10                 {
11                 }
12         }
13
14         /// <6roken> broken markup
15         public class Test2
16         {
17         }
18
19         /// <dont-forget-close-tag>
20         public class Test3
21         {
22         }
23 }
24