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

test-329.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b63f4a2447721bc3971d1f42bfcb379ae52c2d0d (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
using System;

[X (null)]
class X : Attribute {
	int ID;
	public X () {}
	public X (object o)
	{ 
		if (o == null)
			ID = 55;
	}
	
	public static int Main () {
		object[] attrs = typeof(X).GetCustomAttributes(typeof (X),false);
		if (attrs.Length != 1)
			return 2;
	    
		X x = attrs [0] as X;
		if (x.ID != 55)
			return 2;
	    
		Console.WriteLine("OK");
		return 0;
	}
}