1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `lambda expression' and `lambda expression'
8 public static void Main ()
10 bool descending = false;
11 Comparison
<int> comp
= descending ? ((e1
, e2
) => e2
< e1
) : ((e1
, e2
) => e1
< e2
);