[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1644-59.cs
blob2f8aed6b9581beaa1c1b9c70dccfe56135706c93
1 // CS1644: Feature `readonly references' cannot be used because it is not part of the C# 7.0 language specification
2 // Line: 9
3 // Compiler options: -langversion:7
5 class X
7 int i;
9 ref readonly int Test ()
11 return ref i;