2019-02-04 20:11:37 +00:00
|
|
|
// Compiler options: /noconfig /nostdlib -r:$REF_DIR/Facades/System.Runtime.dll -r:$REF_DIR/mscorlib.dll
|
2016-11-10 13:04:39 +00:00
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
class TypeForwarderOfSystemObject
|
|
|
|
{
|
|
|
|
void TestAttributeReadDoesNotCrash ()
|
|
|
|
{
|
|
|
|
System.Runtime.InteropServices.Marshal.ReadByte (IntPtr.Zero, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Main ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|