[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs8156-2.cs
blob7507ec475c36b16ba3f23a34a93f8854dac68a57
1 // CS8156: An expression cannot be used in this context because it may not be returned by reference
2 // Line: 8
4 class X
6 int Prop {
7 get {
8 return 1;
12 ref int Test ()
14 return ref Prop;