[runtime] Don't insta-fail when a faulty COM type is encountered. (#5616)
[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 }