[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git] / mcs / tests / test-xml-069.cs
blobe5f1f2ec219d6b9eae10df9a3aff5ac1ddaf7086
1 // Compiler options: -doc:xml-069.xml
3 using System;
5 namespace XmlComments
7 /// <summary/>
8 class Program
10 /// <summary/>
11 private enum MyEnum
13 /// <summary>The first entry</summary>
14 One,
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)