[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1963.cs
1 // CS1963: An expression tree cannot contain a dynamic operation
2 // Line: 12
3
4 using System;
5 using System.Linq.Expressions;
6
7 class C
8 {
9         public static void Main ()
10         {
11                 dynamic d = 1;
12                 Expression<Func<int>> e = () => d + 1;
13         }
14 }