summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0591.cs
blob: 6ffbe846b0f59517a4abf63508b47b71cdf672c4 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0591: Invalid value for argument to `System.AttributeUsageAttribute' attribute
// Line: 4

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