Explorar o código

[test] DynamicMethod isn't available on iOS.

Rolf Bjarne Kvinge %!s(int64=9) %!d(string=hai) anos
pai
achega
5948e157e8

+ 2 - 0
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Call.cs

@@ -293,6 +293,7 @@ namespace MonoTests.System.Linq.Expressions {
 			Assert.AreEqual ("foo42", lamda (42, "foo"));
 		}
 
+#if !MONOTOUCH
 		[Test]
 		public void CallDynamicMethod_ToString ()
 		{
@@ -322,6 +323,7 @@ namespace MonoTests.System.Linq.Expressions {
 			var lambda = Expression.Lambda<Func<int, int>> (e, i).Compile ();
 			Assert.AreEqual (42, lambda (42));
 		}
+#endif
 
 		public static int Bang (Expression i)
 		{