Turn eval test into normal test case
[mono.git] / mcs / errors / cs0571-6.cs
1 // CS0571: `IFoo.this[int].get': cannot explicitly call operator or accessor
2 // Line: 11
3 // Compiler options: -r:CS0571-6-lib.dll
4
5 using System;
6
7 public class Test
8 {
9         void TestMethod (IFoo i)
10         {
11                 i.get_Jaj (1);
12         }
13 }