[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-xml-005.cs
1 // Compiler options: -doc:xml-005.xml
2 using System;
3
4 namespace Testing
5 {
6         /// <summary>
7         /// comment for interface
8         /// </summary>
9         public interface InterfaceTest
10         {
11         }
12
13         /// <summary>
14         /// incorrect markup comment for interface
15         /// </incorrect>
16         public interface InterfaceTest2
17         {
18         }
19
20         /**
21                 <summary>
22                 Java style comment for interface
23                 </summary>
24         */
25         public interface InterfaceTest3
26         {
27         }
28
29         public class Test
30         {
31                 public static void Main ()
32                 {
33                 }
34         }
35 }
36