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: 9b94fd6def08246f8842c83cf1e9e04d7583793b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// cs0436.cs: Ignoring imported type `System.Console' since the current assembly already has a declaration with the same name
// Line: 16
// Compiler options: -warn:2 -warnaserror

namespace System
{
    public class Console
    {
    }
}

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