2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0139-2.cs
blob1ec421ef1561efe497dc4d81108b745c154c42a2
1 // cs0139-2.cs : 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;