Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-initialize-09.cs
1 class Test
2 {
3         struct Foo { public int[] Data; }
4
5         public static int Main ()
6         {
7                 int[] res = new Foo () { Data = new int[] { 1, 2, 3 } }.Data;
8                 if (res.Length != 3)
9                         return 1;
10
11                 return 0;
12         }
13 }