[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1632-3.cs
blobb7e457b57c4cc6da95432e96e9d5fbb20209fcab
1 // CS1632: Control cannot leave the body of an anonymous method
2 // Line: 14
4 using System;
6 class X
8 public static void Main ()
10 int b = 0;
11 switch (b) {
12 case 1:
13 Action a = () => {
14 break;
17 break;