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

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

namespace ParamMismatch
{
	public class TestCase
	{
		public static void Main()
		{
		}
		
		public TestCase()
		{
		}

		public event EventHandler Culprit
		{
			add
			{
				// even when this contained something, compiling would fail
			}

			remove
			{
				// even when this contained something, compiling would fail
			}
		}
		~TestCase()
		{
		}
	}
}