2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0037-2.cs
blob56639c2104fe42fad10e6739ef0051cf8386f76d
1 // CS0037: Cannot convert null to `bool' because it is a value type
2 // Line: 19
5 using System;
7 class TestA
9 public string Select (Func<TestA, bool> f)
11 return "";
15 public class C
17 static void Main ()
19 string foo = from a in new TestA () select null;