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

gtest-290.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 046fed6a89c5a2cd86d2abbb8a2e850f8f264218 (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
// Compiler options: -warnaserror -warn:4

using System;

public delegate void GenericEventHandler<U, V>(U u, V v);

public class GenericEventNotUsedTest<T>
{
	event GenericEventHandler<GenericEventNotUsedTest<T>, T> TestEvent;

	public void RaiseTestEvent(T t)
	{
		TestEvent(this, t);
	}
}

public interface IFoo {
		event EventHandler blah;
}

public static class TestEntry
{
	public static void Main()
	{
	}
}