[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-932.cs
blobbd5f48e736b1d9a63486cc8882fab0662e943f3e
1 using System;
3 class X
5 static void Main ()
7 new X().WriteLine("some text");
10 public void WriteLine(string format, ConsoleColor foreColor = ConsoleColor.White, ConsoleColor backColor = ConsoleColor.Black, params object[] args)
12 throw new ApplicationException ();
15 public void WriteLine(string line, ConsoleColor foreColor = ConsoleColor.White, ConsoleColor backColor = ConsoleColor.Black)