New test.
[mono.git] / mcs / tests / test-xml-015.cs
1 // Compiler options: -doc:xml-015.xml
2 using System;
3
4 namespace Testing
5 {
6         public class Test
7         {
8                 public static void Main ()
9                 {
10                 }
11
12                 private string PrivateProperty {
13                         get { return null; }
14                         /// <summary>
15                         /// comment for private property setter - no effect
16                         /// </summary>
17                         set { }
18                 }
19
20         }
21 }
22