Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-xml-069.cs
1 // Compiler options: -doc:xml-069.xml
2
3 using System;
4
5 namespace XmlComments
6 {
7         /// <summary/>
8         class Program
9         {
10                 /// <summary/>
11                 private enum MyEnum
12                 {
13                         /// <summary>The first entry</summary>
14                         One,
15                 }
16
17                 /// <summary>
18                 /// <see cref="MyEnum.One"/>
19                 /// <see cref="Program.MyEnum.One"/>
20                 /// <see cref="XmlComments.Program.MyEnum.One"/>
21                 /// <see cref="F:XmlComments.Program.MyEnum.One"/>
22                 /// </summary>
23                 static void Main(string[] args)
24                 {
25                 }
26         }
27 }