[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0837-4.cs
blobbc11afa0c97ae13eb2764f9058d66a312a0c15d1
1 // CS0837: The `is' operator cannot be applied to a lambda expression, anonymous method, or method group
2 // Line: 11
4 using System;
5 using System.Linq.Expressions;
7 class C
9 public static void Main ()
11 Expression<Func<bool>> e = () => "1".ToString is string;