[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1502-2.cs
blob4a22b81d6c4ef4ccab2a946a513f8ea3b52d2762
1 // CS1502: The best overloaded method match for `System.Console.WriteLine(bool)' has some invalid arguments
2 // Line: 10
3 using System;
5 public class MainClass
7 public static void Main()
9 test MyBug = new test();
10 Console.WriteLine (MyBug.mytest());
14 public class test
16 public void mytest()
18 Console.WriteLine("test");