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

test-819.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df15e560121ac6741f4ce9fc960b0ca0a17c456a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;

public class AAttribute : Attribute
{
	[AAttribute (1)]
	public class BAttribute : AAttribute
	{
		public BAttribute ()
			: base ()
		{
		}

		public BAttribute (int a)
			: base (a)
		{
		}
	}

	public AAttribute ()
	{
	}

	protected AAttribute (int a)
	{
	}

	public static int Main ()
	{
		typeof (BAttribute).GetCustomAttributes (true);
		return 0;
	}
}