[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0139-2.cs
blobe89bf270346c26a8e99f4bf4d3477a3a28af624b
1 // CS0139: No enclosing loop out of which to break or continue
2 // Line: 10
3 public class Test
5 public static void Foo (char c)
7 switch (char.GetUnicodeCategory (c)) {
8 default:
9 if (c == 'a')
10 continue;
11 System.Console.WriteLine ();
12 break;