Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / test-296.cs
blob56018d8bab09c71e26ccbdaf82d5ba684c13340c
1 using System;
3 public class GetElementTypeTest {
4 public 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;