add ISafeSerializationData
[mcs.git] / tests / test-670.cs
blobcbed4ac6ddbd4c9297784446eb6ca62c177ed32a
1 // Compiler options: -unsafe
3 using System;
5 unsafe class C
7 public static void Main ()
9 int x = 5;
10 int* a = &(*(x + (int*)null));
11 int* b = &(*(x + (int*)1));