eol
[mcs.git] / tests / test-xml-039.cs
bloba5b890e228c59b0dcfeb1b375c5c2bb25d8f8444
1 // Compiler options: -doc:xml-039.xml -warnaserror
2 using System;
4 /// <summary>
5 /// <see cref="ITest.Start" />
6 /// <see cref="ITest.Foo" />
7 /// </summary>
8 public interface ITest {
9 /// <summary>whatever</summary>
10 event EventHandler Start;
11 /// <summary>hogehoge</summary>
12 int Foo { get; }
15 class Test
17 public static void Main () {}