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

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

unsafe class X {
	static volatile int j;
	
	static void Main ()
	{
		fixed (int *p = &j){
			
		}
	}
}