[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs1632-2.cs
blobfe6c1c2dc663cc6f77deb6e6e7b9d8602d881eb1
1 // CS1632: Control cannot leave the body of an anonymous method
2 // Line: 12
4 using System;
6 class X
8 public static void Main ()
10 while (true) {
11 Action a = () => {
12 break;