[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1644-65.cs
blobdea648b7846844ae62fcf303c40316bd37faabb2
1 // CS1644: Feature `expression body property accessor' cannot be used because it is not part of the C# 6.0 language specification
2 // Line: 11
3 // Compiler options: -langversion:6
5 using System;
7 class C
9 public int this[int i]
11 get => i;