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

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

unsafe class XX {
	static volatile int j;

	static void X (ref int a)
	{
	}
	
	static void Main ()
	{
		X (ref j);
	}
}