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

test-734.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57180670c0d2e11663da85c51cad301c136f3bf4 (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
28
29
30
// Compiler options: -optimize -r:test-734-lib.dll

using System;
using System.Reflection;

class M : C
{
	public void Run ()
	{
		run = false;
		Console.WriteLine (run);
	}
	
	public static int Main ()
	{
		new M ().Run ();
		
		var body = typeof (M).GetMethod ("Run").GetMethodBody ();

		// Check for volatile. (0xFE1E)
		var array = body.GetILAsByteArray ();
		if (array[2] != 0xFE)
			return 1;

		if (array[3] != 0x13)
			return 1;
		
		return 0;
	}
}