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

cs2017.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42ed9c5977af65ac05fdc635d8d8722739c75b6c (plain)
1
2
3
4
5
6
7
8
// cs2017.cs: Cannot specify -main if building a module or library
// Line: 0
// Compiler options: -main:ClassMain -target:library

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