Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-138.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d44aa35387c3ccf19ee19a87770cfaa35576328c (plain)
1
2
3
4
5
6
7
8
9
// ensure the argument to newarr is converted to int32 or native int
class T {
	public static int Main() {
		char[] a;
		long len = 10;
		a = new char [len];
		return 0;
	}
}