[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1739-2.cs
blobdc77a5ed7f1aa7500826fe3bd740c10ac4da6c23
1 // CS1739: The best overloaded method match for `A.this[int]' does not contain a parameter named `value'
2 // Line: 17
4 class A
6 public int this [int id] {
7 set {
12 class B
14 public static void Main ()
16 A a = new A ();
17 a [value:1] = 9;