2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-138.cs
blob1581d2f99ec9aec9932132b2893cd0bd4d73bafe
1 // ensure the argument to newarr is converted to int32 or native int
2 class T {
3 static int Main() {
4 char[] a;
5 long len = 10;
6 a = new char [len];
7 return 0;