Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-xml-024.cs
1 // Compiler options: -doc:xml-024.xml
2
3 namespace Testing
4 {
5    /// <include/>
6    public class Test
7    {
8         // warning
9         /// <include file='a' />
10         public static void Main ()
11         {
12         }
13
14         // warning
15         /// <include path='/foo/bar' />
16         public void Bar (int x)
17         {
18         }
19
20         // warning
21         /// <include file='there-is-no-such-file' path='/foo/bar' />
22         public void Baz (int x)
23         {
24         }
25    }
26 }
27