Better error message for common xml documentation error
[mono.git] / mcs / tests / test-xml-061.cs
1 // Compiler options: -doc:xml-061.xml /warnaserror /warn:4
2
3 class Test
4 {
5         static void Main ()
6         {
7         }
8 }
9
10 ///<summary>summary</summary>
11 public interface Interface
12 {
13         ///<summary>Problem!</summary>
14         int this[int index]
15         {
16                 get;
17         }
18 }
19