add bug info
[mcs.git] / tests / test-296.cs
blobb5954434b1827528c66b5c368d8b924e4fc27e91
1 using System;
3 public class GetElementTypeTest {
4 static int Main (string[] args) {
5 GetElementTypeTest me = new GetElementTypeTest ();
6 Type t = me.GetType ();
7 Type elementt = t.GetElementType ();
9 if (elementt != null)
10 return 1;
11 return 0;