summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0571-6.cs
blob: 6486154e89f55bdd18a3e27b106b393c25c4f772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0571: `IFoo.this[int].get': cannot explicitly call operator or accessor
// Line: 11
// Compiler options: -r:CS0571-6-lib.dll

using System;

public class Test
{
	void TestMethod (IFoo i)
	{
		i.get_Jaj (1);
	}
}