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