2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-xml-027.cs
blob8543ae2b9b4c04141d146889f7c918a303ba36ac
1 // Compiler options: -doc:xml-027.xml
2 using ZZZ = Testing.Test;
4 namespace Testing
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
28 public static void Main () { System.Console.Error.WriteLine ("xml-027 is running fine ;-)"); }
30 // I don't put any documentation here, but cref still works.
31 public void Foo () {}
33 public string Bar;
35 public string Baz { get { return ""; } }