codeowners update
[mono.git] / mcs / tests / test-822.cs
1 // Compiler options: -r:test-822-lib.dll
2
3 using System;
4
5 class Test
6 {
7         public static int Main ()
8         {
9                 B b = new B ();
10                 b.Prop = 1;
11                 int a = b.Prop;
12                 return 0;
13         }
14 }