Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

39 lines
881 B
C#

// Compiler options: -doc:xml-027.xml
using ZZZ = Testing.Test;
namespace Testing
{
/// <summary>
/// <see />
/// <see cref='!!!!!' />
/// <see cref='nonexist' />
/// <see cref='Test' />
/// <see cref='ZZZ' />
/// <see cref='T:Test' />
/// <see cref='_:Test' />
/// <see cref='P:Bar' />
/// <see cref='F:Bar' />
/// <see cref='Bar' />
/// <see cref='P:Baz' />
/// <see cref='F:Baz' />
/// <see cref='Baz' />
/// <see cref='nonexist.Foo()' />
/// <see cref='Test.Foo()' />
/// <see cref='ZZZ.Foo()' />
/// <see cref='Test.Bar()' />
/// <see cref='Test.Foo(System.Int32)' />
/// </summary>
class Test
{
public static void Main () { System.Console.Error.WriteLine ("xml-027 is running fine ;-)"); }
// I don't put any documentation here, but cref still works.
public void Foo () {}
public string Bar;
public string Baz { get { return ""; } }
}
}