Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-670.cs
1 // Compiler options: -unsafe
2
3 using System;
4
5 unsafe class C
6 {
7         public static void Main ()
8         {
9                 int x = 5;
10                 int* a = &(*(x + (int*)null));
11                 int* b = &(*(x + (int*)1));
12         }
13 }