[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0571-4.cs
blob0e014d2bf807946903cecff39bb48182a8b67d5e
1 // CS0571: `MainClass.this[int, bool, string].get': cannot explicitly call operator or accessor
2 // Line: 15
4 using System.Runtime.CompilerServices;
6 class MainClass {
7 [IndexerName ("AA")]
8 int this [int Value, bool Value2, string Value3] {
9 get {
10 return 1;
14 public MainClass () {
15 int i = get_AA (2, false, "aaa");