Merge pull request #5439 from alexrp/master
[mono.git] / mcs / tests / test-xml-020.cs
1 // Compiler options: -doc:xml-020.xml
2 using System;
3
4 namespace Testing
5 {
6         public class Test
7         {
8                 public static void Main ()
9                 {
10                 }
11
12                 /// comment for constructor
13                 public Test ()
14                 {
15                 }
16
17                 /// comment for destructor
18                 ~Test ()
19                 {
20                 }
21         }
22 }
23