There was an error while loading. Please reload this page.
2 parents 991a517 + 28aec73 commit 75c4e9eCopy full SHA for 75c4e9e
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Call.cs
@@ -296,6 +296,7 @@ public void CallStaticMethodWithRefParameterAndOtherParameter ()
296
Assert.AreEqual ("foo42", lamda (42, "foo"));
297
}
298
299
+#if !FULL_AOT_RUNTIME
300
[Test]
301
public void CallDynamicMethod_ToString ()
302
{
@@ -325,6 +326,7 @@ public void CallDynamicMethod_CompileInvoke ()
325
326
var lambda = Expression.Lambda<Func<int, int>> (e, i).Compile ();
327
Assert.AreEqual (42, lambda (42));
328
329
+#endif
330
331
public static int Bang (Expression i)
332
0 commit comments