Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-324.cs
1 using System;
2
3 public class A {
4         public void DoStuff ()
5         {
6                 Console.WriteLine ("stuff");
7         }
8 }
9
10 public struct B {
11     public bool Val {
12         get {
13             return false;
14         }
15     }
16 }
17
18 public class T : MarshalByRefObject {
19         internal static A a = new A ();
20         public static B b;
21 }
22
23 public class Driver {
24
25         public static void Main ()
26         {
27                 T.a.DoStuff ();
28                 bool b = T.b.Val;
29         }
30 }