[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / test-138.cs
blobd44aa35387c3ccf19ee19a87770cfaa35576328c
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;