Updated.
[mono.git] / mcs / errors / cs0186.cs
1 // cs0186.cs: Use of null is not valid in this context\r
2 // Line: 8\r
3 \r
4 using System;\r
5 \r
6 class ClassMain {\r
7         public static void Main() {\r
8             Exception e = (object)null as Exception;\r
9         }\r
10 }\r
11 \r