Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-xml-009.cs
1 // Compiler options: -doc:xml-009.xml
2 using System;
3
4 namespace Testing
5 {
6         public class Test
7         {
8                 public static void Main ()
9                 {
10                         /// inside method - not allowed.
11                 }
12         }
13
14         public class Test2
15         {
16                 /// no target
17         }
18
19         public class Test3
20         {
21         }
22         /// no target case 2.
23 }
24