remove debug writelines
[mcs.git] / errors / cs1502-2.cs
blobe795ca16fb1ddedb874dda445eea2f8810253324
1 // cs1502-2.cs: 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");