Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-764.cs
1 using System;
2
3 class Item
4 {
5         internal static object Field = "Test";
6 }
7
8 class Caller
9 {
10         public string this[string x]
11         {
12                 get { return x; }
13         }
14
15         public int this[int x]
16         {
17                 get { return x; }
18         }
19
20         public void Foo ()
21         {
22                 var v = Item.Field.ToString ();
23         }
24
25         public static void Main ()
26         {
27         }
28 }