2 // This test is used to make sure that we correctly create value
3 // types in the presence of arrays. Check bug 21801 for a history
23 X
[] x
= { new X (40), F (10) }
;
25 if (x
[0].value != 40)
28 if (x
[1].value != 10)
31 Console
.WriteLine ("test ok");