[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1738-3.cs
blob901ac0e5d59fd79ad80b7bd50b5adc2bd57b5fa6
1 // CS1738: Named arguments must appear after the positional arguments when using language version older than 7.2
2 // Line: 14
4 class C
6 int this [int a, string s] {
7 get {
8 return 1;
12 void Test ()
14 var r = this [a : 1, "out"];