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

cs1686.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfd5e1108bd9222af93325ceca6ea1fdc5711bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Compiler options: -unsafe

class X {
	delegate void S ();

	unsafe void M ()
	{
		int i;
		int * j ;

		S s = delegate {
			i = 1;
		};
		j = &i;
	}

	static void Main () {}
}