[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1608.cs
1 // CS1608: The RequiredAttribute attribute is not permitted on C# types
2 // Line: 6
3
4 using System.Runtime.CompilerServices;
5
6 [RequiredAttribute (typeof (object))]
7 class ClassMain {
8 }
9