[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0186-2.cs
blobfc152c24bef8d48d8682562cbc7521383989d182
1 // CS0186: Use of null is not valid in this context
2 // Line: 2
4 class ClassMain {
5 public static void Main() {
6 foreach (System.Type type in null) {
7 }