TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs1608.cs
blob6990fb4236b64bf6e5bf3d20fffbdbfab06d336e
1 // CS1608: The RequiredAttribute attribute is not permitted on C# types
2 // Line: 6
4 using System.Runtime.CompilerServices;
6 [RequiredAttribute (typeof (object))]
7 class ClassMain {