add SafeSerializationEventArgs
[mcs.git] / tests / test-764.cs
blob4f554832f3cfa6bd99b43edb4249f9c91bae864a
1 using System;
3 class Item
5 internal static object Field = "Test";
8 class Caller
10 public string this[string x]
12 get { return x; }
15 public int this[int x]
17 get { return x; }
20 public void Foo ()
22 var v = Item.Field.ToString ();
25 public static void Main ()