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

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

namespace TestBUG
{
	public class myAttribute : Attribute
	{
		public myAttribute(string p1, string p2, string p3, int p4) {}
	}

	//
	// Typecasts on attributes, fix for bug 37363
	//
	[myAttribute("stringArgument", (String)null, (String)null, 2)]
	public class Test
	{

		public static int Main  ()
		{
			return 0;
		}
	}
}