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

cs0518.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54edcccdf6ae6ab5ded52eeae0ad0322cd450134 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0518.cs: The predefined type 'System.Object' is not defined or imported
// Line: 0
// Compiler options: -nostdlib

class MainClass
{
    public static void Main ()
    {
    }
}