Updated.
[mono.git] / mcs / errors / cs1591-13.cs
1 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
2 using System;
3
4 namespace Testing
5 {
6         /// <summary>
7         /// description for class Test
8         /// </summary>
9         public class Test
10         {
11                 public string this [int i] {
12                         get { return null; }
13                 }
14         }
15 }