[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs1944-5.cs
1 // CS1944: An expression tree cannot contain an unsafe pointer operation
2 // Line: 13
3 // Compiler options: -unsafe
4
5 using System;
6 using System.Linq.Expressions;
7
8 class C
9 {
10         public static void Main ()
11         {
12                 unsafe {
13                         Expression<Func<int>> e = () => sizeof (long*);
14                 }
15         }
16 }