Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-749.cs
1 // Compiler options: -r:test-749-lib.dll
2
3 using System;
4
5 class M
6 {
7         public static void Main ()
8         {
9                 B b = new B ();
10                 b.Prop = 2;
11         }
12 }