2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / dcs1978-3.cs
blobd1851917d14ce0e7f62dce3ac67ec0098e113b3e
1 // CS1978: An expression of type `int*' cannot be used as an argument of dynamic operation
2 // Line: 9
3 // Compiler options: -unsafe
5 unsafe class C
7 public static void Main ()
9 dynamic d = null;
10 d ((int*)0);