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

test-anon-30.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cb601d7599c3f28ed078e9c7ae6f89b2d3db0b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class X {
	public bool eh;
}

static class Program {
	delegate void D (X o);
	static event D E;
	
	static void Main()
	{
		bool running = true;

		E = delegate(X o) {
			o.eh = false;
			running = false;
		};

		running = true;
		
	}
}