Toggle the turbo button
[mono.git] / mcs / tests / test-862.cs
1 class op_Addition
2 {
3         public static int Foo = 42;
4
5         public class Builder
6         {
7                 public int Foo
8                 {
9                         get { return op_Addition.Foo; }
10                 }
11
12                 public static int operator + (Builder a, Builder b)
13                 {
14                         return 0;
15                 }
16         }
17
18         public static void Main ()
19         {
20                 var x = new Builder ().Foo;
21         }
22 }