[corlib] Use temp directory for assemblies in SaveTest.Save() (#5727)
[mono.git] / mcs / errors / cs0139-2.cs
1 // CS0139: No enclosing loop out of which to break or continue
2 // Line: 10
3 public class Test
4 {
5         public static void Foo (char c)
6         {
7                 switch (char.GetUnicodeCategory (c)) {
8                 default:
9                         if (c == 'a')
10                                 continue;
11                         System.Console.WriteLine ();
12                         break;
13                 }
14         }
15 }
16