2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0173.cs
blobf75e2714536329311156370ab575081d33b07783
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `anonymous method' and `anonymous method'
2 // Line: 11
4 using System;
6 class Test
8 public static void Main ()
10 bool descending = false;
11 Comparison<int> comp = descending ? ((e1, e2) => e2 < e1) : ((e1, e2) => e1 < e2);