2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / tests / gen-109.cs
1 using System;
2
3 class X {
4         static void Main ()
5         {
6                 int [] foo = null;
7                 Array.Resize (ref foo, 10);
8         }
9 }