Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0436.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34874f65934179a7a21724de4a182153e089a0b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS0436: The type `System.Console' conflicts with the imported type `System.Console'. Ignoring the imported type definition
// Line: 16
// Compiler options: -warn:2 -warnaserror

namespace System
{
    public class Console
    {
    }
}

public class C
{
    public static void Main ()
    {
        new System.Console ();
    }
}