Allow passing null to JsonArray.Add()
[mono.git] / mcs / tests / test-750.cs
1 // Compiler options: -warnaserror -warn:4
2 using System;
3
4 public interface IA
5 {
6         string this[int index] { get; set; }
7 }
8
9 public interface IB : IA
10 {
11         int this[string name] { get; set; }
12         new int this[int index] { get; set; }
13         int this[string namespaceURI, string localName] {get; set;}
14 }
15
16 class M
17 {
18         public static void Main ()
19         {
20         }
21 }