Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-138.cs
1 // ensure the argument to newarr is converted to int32 or native int
2 class T {
3         public static int Main() {
4                 char[] a;
5                 long len = 10;
6                 a = new char [len];
7                 return 0;
8         }
9 }