You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Test]
[Ignore("Fails on IsNotNull")]
public void BlockWithConstanRetrunIsSupported()
{
var ret = Block(Label(Label(typeof(int)), Constant(7)));
var lambda = Lambda<Func<int>>(ret);
var compiled = lambda.Compile();
var value1 = compiled();
Assert.AreEqual(7, value1);
var fastCompiled = lambda.CompileFast<Func<int>>(true);
Assert.IsNotNull(fastCompiled);
}