Merge all static runtime libs into libmono-static.
[mono.git] / mcs / tests / test-289.cs
1 using System;
2
3 public class Test
4 {
5         public static void Main () {}
6             
7         public string Value { set { } }
8         public void set_Value () { return; }
9         
10         void set_Item (int a, int b, bool c) {}
11         int this[int i] { set {} }             
12         bool this [bool i] { get { return false; } }
13        
14 }