* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs1570-7.cs
1 // cs1570-7.cs: XML comment on `T:Testing.Test2' has non-well-formed XML (a name did not start with a legal character 54 (6)  Line 1, position 3.)
2 // Line: 18
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
4
5 using System;
6
7 namespace Testing
8 {
9         /// comment without markup on class - it is allowed
10         public class Test
11         {
12                 public static void Main ()
13                 {
14                 }
15         }
16
17         /// <6roken> broken markup
18         public class Test2
19         {
20         }
21
22         /// <dont-forget-close-tag>
23         public class Test3
24         {
25         }
26 }
27