add SafeSerializationEventArgs
[mcs.git] / tests / gtest-516.cs
blobc90b3a3d4ec865ed37efd2311b75115239b670f0
1 using System;
3 interface I<T> : IA<T>
7 interface IA<T>
9 T this [int i] { set; }
12 class B
14 I<int> i;
16 void Foo ()
18 i [10] = 1;
21 public static void Main ()