[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-932.cs
1 using System;
2
3 class X
4 {
5         static void Main ()
6         {
7                 new X().WriteLine("some text");
8         }
9
10         public void WriteLine(string format, ConsoleColor foreColor = ConsoleColor.White, ConsoleColor backColor = ConsoleColor.Black, params object[] args)
11         {
12                 throw new ApplicationException ();
13         }
14
15         public void WriteLine(string line, ConsoleColor foreColor = ConsoleColor.White, ConsoleColor backColor = ConsoleColor.Black)
16         {
17         }
18 }