[xbuild] Vbc task - make error column check a little non-specific.
[mono.git] / mcs / tests / test-296.cs
1 using System;
2
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 ();
8
9                 if (elementt != null)
10                         return 1;
11                 return 0;
12         }
13 }
14