Merge pull request #496 from nicolas-raoul/unit-test-for-issue2907
[mono.git] / mcs / tests / gtest-388.cs
1 using System;
2
3 class Data {
4   public int Value;
5 }
6
7 class Foo {
8   static void f (Data d)
9   {
10     if (d.Value != 5)
11       throw new Exception ();
12   }
13
14   public static void Main ()
15   {
16     Data d;
17     f (d = new Data () { Value = 5 });
18   }
19 }