[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-autoproperty-01.cs
blobf994cd9c09b75879fdafecc890b077254c277536
2 // Tests automatic properties
3 using System;
5 public class Test
7 private class A
9 public string B { get; set; }
12 public string Foo { get; set; }
13 public int Answer { get; private set; }
15 public Test ()
17 Answer = 42;
20 public static int Main ()
22 Test t = new Test ();
23 t.Foo = "Bar";
24 if (t.Foo != "Bar")
25 return 1;
27 if (t.Answer != 42)
28 return 2;
30 A a = new A ();
31 a.B = "C";
32 if (a.B != "C")
33 return 3;
35 return 0;