1 // CS1944: An expression tree cannot contain an unsafe pointer operation
3 // Compiler options: -unsafe
6 using System
.Linq
.Expressions
;
10 unsafe delegate byte* D (int*[] d
);
11 public static void Main ()
14 Expression
<D
> e6
= (p
) => (byte*)p
[10];