[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0021.cs
1 // CS0021: Cannot apply indexing with [] to an expression of type `int'
2 // Line: 10 
3 using System;
4
5 class Test
6 {
7         public static void Main ()
8         {
9                 int i = 0;
10                 Console.WriteLine ("Get i[2]: {0}", i[2]);
11         }
12 }
13