2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-initialize-09.cs
blob0027dd5fef87039514796e6a843c8a53caa58b29
1 class Test
3 struct Foo { public int[] Data; }
5 public static int Main ()
7 int[] res = new Foo () { Data = new int[] { 1, 2, 3 } }.Data;
8 if (res.Length != 3)
9 return 1;
11 return 0;