[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-542.cs
blob6acf8e3df3a36c5dcb1068e6caadb2db75b29d76
1 //
2 // See bug 78113
3 //
5 public struct ARec
7 decimal mVal;
8 public ARec(decimal val)
10 mVal = Round(val, 1);
13 decimal Round(int digits)
15 return Round(mVal, digits);
18 static decimal Round(decimal val, int digits)
20 return 0;
24 class X {
25 public static void Main () {