2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1951.cs
blobc1040f83efd2e31e970b2f1ca6ce75e900f0527e
1 // CS1951: An expression tree parameter cannot use `ref' or `out' modifier
2 // Line: 13
4 using System;
5 using System.Linq.Expressions;
7 class C
9 delegate int D (ref int a);
11 public static void Main ()
13 Expression<D> e = (ref int a) => a;