Merge pull request #5439 from alexrp/master
[mono.git] / mcs / tests / test-320.cs
1 // Compiler options: -unsafe
2
3
4 using System;
5
6 unsafe class X {
7
8         unsafe public X (sbyte *value, int startIndex, int length) {
9         }
10
11         public static void Main ()
12         {
13                 new X ((sbyte*)null, 0, 10);
14         }
15 }