[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs1944-4.cs
blob33fc4d6b74bb6d28f2c8c9d50ccfc5e7722949d4
1 // CS1944: An expression tree cannot contain an unsafe pointer operation
2 // Line: 15
3 // Compiler options: -unsafe
5 using System;
6 using System.Linq.Expressions;
8 class C
10 unsafe delegate int* D (int* i);
12 public static void Main ()
14 unsafe {
15 Expression<D> e = p => p + 1;