2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-324.cs
blob20dde5e44615efc9f18f4be7e631a7c0434eee22
1 using System;
3 public class A {
4 public void DoStuff ()
6 Console.WriteLine ("stuff");
10 public struct B {
11 public bool Val {
12 get {
13 return false;
18 public class T : MarshalByRefObject {
19 internal static A a = new A ();
20 public static B b;
23 public class Driver {
25 public static void Main ()
27 T.a.DoStuff ();
28 bool b = T.b.Val;