Updated with review feedback.
[mono.git] / mcs / errors / cs1978-3.cs
1 // CS1978: An expression of type `int*' cannot be used as an argument of dynamic operation
2 // Line: 9
3 // Compiler options: -unsafe
4
5 unsafe class C
6 {
7         public static void Main ()
8         {
9                 dynamic d = null;
10                 d ((int*)0);
11         }
12 }