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