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

test-637.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9519fb10e8fa03beb4b297cf57046dfb62a0f194 (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
33
34
35
36
37
38
39
using System;

struct S {}

class A : Attribute
{
	public A ()
	{
	}
	
	public A (object value)
	{
		Value = (Type) value;
	}
	
	public Type Value { get; set; }
}

[A (Value = typeof (S*))]
class TestProp
{
}

[A (typeof (ushort**))]
public class Test
{
	public static int Main ()
	{
		A a = (A)typeof (Test).GetCustomAttributes (false)[0];
		if (a.Value != typeof (ushort**))
			return 1;

		a = (A)typeof (TestProp).GetCustomAttributes (false)[0];
		if (a.Value != typeof (S*))
			return 2;
		
		return 0;
	}
}