Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1608.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8a4fdc4a7c4ae9da0ee134403b7552bc6c7fae8 (plain)
1
2
3
4
5
6
7
8
9
// cs1608.cs: The RequiredAttribute attribute is not permitted on C# types
// Line: 6

using System.Runtime.CompilerServices;

[RequiredAttribute (typeof (object))]
class ClassMain {
}