2 // Fix for bug: 71819, we were producing the wrong
3 // opcodes when loading parameters in the proxy produced
4 // by the compiler in class B to implement IB.
6 namespace FLMID
.Bugs
.BoolOne
10 void Add(bool v1
, bool v2
, uint v3
, bool v4
);
15 public static bool ok
;
17 public void Add(bool v1
, bool v2
, uint v3
, bool v4
)
23 public class B
: A
, IB
29 public static int Main(string[] args
)
33 aux
.Add(false, false, 0, true);