[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0019-46.cs
blob3924c532ea65e6136fce7e418be7c19917ae4d2f
1 // CS0019: Operator `==' cannot be applied to operands of type `method group' and `method group'
2 // Line: 8
4 public class C
6 public static void Main ()
8 bool a = DelegateMethod == DelegateMethod;
11 static int DelegateMethod(bool b)
13 return 3;