[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0611-2.cs
1 // CS0611: Array elements cannot be of type `System.TypedReference'
2 // Line: 5
3
4 public class Sample {
5         System.TypedReference[] references {
6                 get {
7                         return null;
8                 }
9         }
10
11                 static void Main () {}
12 }
13
14
15