blob: d1851917d14ce0e7f62dce3ac67ec0098e113b3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS1978: An expression of type `int*' cannot be used as an argument of dynamic operation
// Line: 9
// Compiler options: -unsafe
unsafe class C
{
public static void Main ()
{
dynamic d = null;
d ((int*)0);
}
}
|