2010-05-27 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs0436.cs
1 // CS0436: The type `System.Console' conflicts with the imported type `System.Console'. Ignoring the imported type definition
2 // Line: 16
3 // Compiler options: -warn:2 -warnaserror
4
5 namespace System
6 {
7     public class Console
8     {
9     }
10 }
11
12 public class C
13 {
14     public static void Main ()
15     {
16         new System.Console ();
17     }
18 }