summaryrefslogtreecommitdiff
path: root/mcs/tests/test-131.cs
blob: 568576c96fa45231c8a636bd7eb088202e9882d9 (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
using System;

public class SimpleAttribute : Attribute {

	string n;
	
	public SimpleAttribute (string name)
	{
		n = name;
	}
}

public class Blah {

	public enum Foo {

		A,

		[Simple ("second")]
		B,

		C
	}

	public static int Main ()
	{
		//
		// We need a better test which does reflection to check if the
		// attributes have actually been applied etc.
		//

		return 0;
	}

}