Switch to compiler-tester
[mono.git] / mcs / tests / test-xml-025.cs
1 // Compiler options: -doc:xml-025.xml
2
3 namespace Testing
4 {
5    /// <include file='test-xml-025.inc' path='/foo' />
6    public class Test
7    {
8         public static void Main ()
9         {
10         }
11
12         /// <include file='test-xml-025.inc' path='/root'/>
13         public string S1;
14
15         /// <include file='test-xml-025.inc' path='/root/child'/>
16         public string S2;
17
18         /// <include file='test-xml-025.inc' path='/root/@attr'/>
19         public string S3;
20    }
21 }
22