2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-388.cs
blobe28d37fd21255e0543301684175a9e3068857a04
1 using System;
3 class Data {
4 public int Value;
7 class Foo {
8 static void f (Data d)
10 if (d.Value != 5)
11 throw new Exception ();
14 static void Main ()
16 Data d;
17 f (d = new Data () { Value = 5 });