2004-12-06 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / xml-025.cs
1 // Compiler options: -doc:xml-025.xml
2 // Note that it could not be compiled to generate reference output as it is.
3 // csc needs '\\' instead of '/' for file specification.
4
5 namespace Testing
6 {
7    /// <include file='../xml-025.inc' path='/foo' />
8    public class Test
9    {
10         public static void Main ()
11         {
12         }
13
14         /// <include file='../xml-025.inc' path='/root'/>
15         public string S1;
16
17         /// <include file='../xml-025.inc' path='/root/child'/>
18         public string S2;
19
20         /// <include file='../xml-025.inc' path='/root/@attr'/>
21         public string S3;
22    }
23 }
24