cleol
[mcs.git] / errors / gcs1951-2.cs
blob615d2cf2e114e8cae22f088cc3ea8f895bcc8c44
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 (out int a);
11 public static void Main ()
13 Expression<D> e = (out int a) => a = 0;