[w32handle] Remove unused header includes
[mono-project.git] / mcs / tests / test-742.cs
blob8be9f8220c0f6e453b79892bc096ddc794f23dbe
1 using System;
3 public struct Test
5 public int Foo;
7 public static Test Set (C c)
9 c.Value.Foo = 21;
10 return c.Value;
14 public class C
16 public Test Value;
18 public class Driver
20 public static int Main ()
22 var v = Test.Set (new C ());
23 Console.WriteLine (v.Foo);
24 if (v.Foo != 21)
25 return 1;
26 return 0;