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

test-296.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5954434b1827528c66b5c368d8b924e4fc27e91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

public class GetElementTypeTest {
	static int Main (string[] args) {
		GetElementTypeTest me = new GetElementTypeTest ();
		Type t = me.GetType ();
		Type elementt = t.GetElementType ();

		if (elementt != null)
			return 1;
		return 0;
	}
}