Merge pull request #409 from Alkarex/patch-1
[mono.git] / mcs / tests / test-xml-067.cs
1 // Compiler options: support-xml-067.cs -doc:xml-067.xml -warnaserror
2
3 // Partial types can have documentation on one part only
4
5 using System;
6
7 namespace Testing
8 {
9         /// <summary>
10         /// description for class Test
11         /// </summary>
12         public partial class Test
13         {
14                 /// test
15                 public Test ()
16                 {
17                 }
18         }
19
20         public partial class Test
21         {
22                 /// test 2
23                 public void Foo ()
24                 {
25                 }
26
27                 static void Main ()
28                 {
29                 }
30         }
31 }