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

test-937.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b577d34e7f638df22a752059b04820923b9e7b5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Compiler options: /noconfig /nostdlib -r:../class/lib/net_4_x/Facades/System.Runtime.dll -r:../class/lib/net_4_x/mscorlib.dll

using System;

class TypeForwarderOfSystemObject
{
	void TestAttributeReadDoesNotCrash ()
	{
		System.Runtime.InteropServices.Marshal.ReadByte (IntPtr.Zero, 0);		
	}

	static void Main ()
	{
	}
}