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

test-894.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 259a66cd03a91bc73edf12b4af3238787161833a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

[AttributeUsage (AttributeTargets.All + 0xFFFFFE + 1)]
class A1Attribute : Attribute
{
}

[AttributeUsage ((AttributeTargets) 0xffff)]
class A2Attribute : Attribute
{
}

public class Test
{
	public static void Main ()
	{
		
	}
}