Merge pull request #5382 from kumpera/pedump_fix
[mono.git] / mono / tests / array-vt.cs
1 using System;
2
3 public struct Test {
4         int a1;
5         int a2;
6
7         static public int Main () {
8                 Test[] tarray = new Test [20];
9                 tarray[0].a1 = 1;
10                 tarray[0].a2 = 2;
11                 if (tarray[0].a1 + tarray[0].a2 != 3)
12                         return 1;
13                 return 0;
14         }
15 }