Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

38 lines
583 B
C#

//
// Fix for bug: 71819, we were producing the wrong
// opcodes when loading parameters in the proxy produced
// by the compiler in class B to implement IB.
//
namespace FLMID.Bugs.BoolOne
{
public interface IB
{
void Add(bool v1, bool v2, uint v3, bool v4);
}
public class A
{
public static bool ok;
public void Add(bool v1, bool v2, uint v3, bool v4)
{
ok = v4;
}
}
public class B : A, IB
{
}
public class Test
{
public static int Main(string[] args)
{
IB aux = new B();
aux.Add(false, false, 0, true);
return A.ok ? 0 : 1;
}
}
}