Updated with review feedback.
[mono.git] / mcs / tests / test-741.cs
1 // Compiler options: -r:test-741-lib.dll
2
3 class Test
4 {
5         void test ()
6         {
7                 IFoo f = null;
8                 int v = f.Prop;
9                 f.NestedProp = 4;               
10         }
11         
12         public static void Main ()
13         {
14     }
15 }