eol
[mcs.git] / tests / test-xml-046.cs
blob53461fd289fde352112f48f2a88a4da64b1d91a3
1 // Compiler options: -doc:xml-046.xml -warnaserror
2 /// <summary />
3 public interface IExecutable {
4 /// <summary />
5 void Execute ();
7 /// <summary />
8 object Current {
9 get;
13 /// <summary>
14 /// <see cref="Execute" />
15 /// <see cref="Current" />
16 /// </summary>
17 public class A : IExecutable {
18 static void Main () {
21 /// <summary />
22 public void Execute () {
25 /// <summary />
26 public object Current {
27 get { return null; }