[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0571-5.cs
1 // CS0571: `C2.this[int].set': cannot explicitly call operator or accessor
2 // Line: 8
3 // Compiler options: -r:CS0571-5-lib.dll
4
5 class MainClass {
6         public static void Main() {
7                 C2 c = new C2 ();
8                 c.set_Item(1, 2);
9         }
10 }