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

cs2019.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d4cd51fc2508a9bcb397566d585ebcc01812f58 (plain)
1
2
3
4
5
6
7
8
// cs2019.cs: Invalid target type for -target: must specify 'exe', 'winexe', 'library', or 'module'
// Line: 0
// Compiler options: -target:unknown

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