blob: 0027dd5fef87039514796e6a843c8a53caa58b29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class Test
{
struct Foo { public int[] Data; }
public static int Main ()
{
int[] res = new Foo () { Data = new int[] { 1, 2, 3 } }.Data;
if (res.Length != 3)
return 1;
return 0;
}
}
|