Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1919.cs
1 // CS1919: Unsafe type `int*' cannot be used in an object creation expression
2 // Line: 12
3 // Compiler options: -unsafe
4
5 using System;
6
7 public class Test
8 {
9         static void Main ()
10         {
11                 unsafe {
12                         object o = new int*();
13                 }
14         }
15 }
16