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

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

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

	[Test(TestEnum2.TestValue)]
	enum TestEnum {
		Value
	}

	class TestAttribute : Attribute {
		public TestAttribute( TestEnum2 value ) {
		}
	}
	
	class Test2Attribute : Attribute {
	}
	
	enum TestEnum2 {
		[Test2]
		TestValue
	}
}