2002-12-31 Martin Baulig <martin@ximian.com>
[mono.git] / mono / tests / array-cast.cs
1 using System;
2
3 namespace Test {
4         public class Test {
5                 public static int Main () {
6                         Attribute[] attr_array = new Attribute [1];
7                         object obj = (object) attr_array;
8                         object[] obj_array = (object[]) obj;
9                         return 0;
10                 }
11         }
12 }