**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0186.cs
blobf15e79b02e5f9f62384d5fbcfb7034c2e5eadb59
1 // cs0186.cs: Use of null is not valid in this context
2 // Line: 8
4 using System;
6 class ClassMain {
7 public static void Main() {
8 Exception e = (object)null as Exception;