Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0591.cs
1 // CS0591: Invalid value for argument to `System.AttributeUsageAttribute' attribute
2 // Line: 4
3
4 [System.AttributeUsage(0)]
5 class ClassMain {
6     
7         public static void Main () {
8         }
9 }
10