2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0158.cs
blobf806cc616158409dff25a5e394ff495f74b9f6e8
1 // cs0158.cs: The label `start' shadows another label by the same name in a contained scope
2 // Line: 9
4 class ClassMain {
5 public static void Main() {
6 start:
8 start:
9 goto start;