add ISafeSerializationData
[mcs.git] / tests / test-750.cs
blob40389be473422a332b23ae14bb7662b38491b948
1 // Compiler options: -warnaserror -warn:4
2 using System;
4 public interface IA
6 string this[int index] { get; set; }
9 public interface IB : IA
11 int this[string name] { get; set; }
12 new int this[int index] { get; set; }
13 int this[string namespaceURI, string localName] {get; set;}
16 class M
18 public static void Main ()