Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git] / mcs / errors / cs0173-3.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);