* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[mono.git] / mcs / tests / test-138.cs
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;
8         }
9 }