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

cs0591.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61058c85dd8cf61276de911772c10fbe82477771 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0591.cs: Invalid value for argument to 'System.AttributeUsage' attribute
// Line: 4

[System.AttributeUsage(0)]
class ClassMain {
    
        public static void Main () {
        }
}