2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1944-5.cs
blobb53a1baeca5c4ecaadc5bcbc1a42a7d1433529c2
1 // CS1944: An expression tree cannot contain an unsafe pointer operation
2 // Line: 13
3 // Compiler options: -unsafe
5 using System;
6 using System.Linq.Expressions;
8 class C
10 public static void Main ()
12 unsafe {
13 Expression<Func<int>> e = () => sizeof (long*);