Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / tests / gtest-109.cs
1 using System;
2
3 class X {
4         public static void Main ()
5         {
6                 int [] foo = null;
7                 Array.Resize (ref foo, 10);
8         }
9 }