codeowners update
[mono.git] / mcs / tests / test-xml-039.cs
1 // Compiler options: -doc:xml-039.xml -warnaserror
2 using System;
3
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; }
13 }
14
15 class Test
16 {
17         public static void Main () {}
18 }
19