[w32file] Move MonoIO.Find{First,Next,Close} to managed
[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