2007-10-18 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / errors / gcs0037.cs
1 // CS0037: Cannot convert null to `int' because it is a value type
2 // Line: 9
3 // Compiler options: -langversion:linq
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 var e = new[] { 1, null };
10         }
11 }
12