* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / test-xml-027.cs
1 // Compiler options: -doc:xml-027.xml
2 using ZZZ = Testing.Test;
3
4 namespace Testing
5 {
6         /// <summary>
7         /// <see />
8         /// <see cref='!!!!!' />
9         /// <see cref='nonexist' />
10         /// <see cref='Test' />
11         /// <see cref='ZZZ' />
12         /// <see cref='T:Test' />
13         /// <see cref='_:Test' />
14         /// <see cref='P:Bar' />
15         /// <see cref='F:Bar' />
16         /// <see cref='Bar' />
17         /// <see cref='P:Baz' />
18         /// <see cref='F:Baz' />
19         /// <see cref='Baz' />
20         /// <see cref='nonexist.Foo()' />
21         /// <see cref='Test.Foo()' />
22         /// <see cref='ZZZ.Foo()' />
23         /// <see cref='Test.Bar()' />
24         /// <see cref='Test.Foo(System.Int32)' />
25         /// </summary>
26         class Test
27         {
28                 public static void Main () { System.Console.Error.WriteLine ("xml-027 is running fine ;-)"); }
29
30                 // I don't put any documentation here, but cref still works.
31                 public void Foo () {}
32
33                 public string Bar;
34
35                 public string Baz { get { return ""; } }
36         }
37 }
38