**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0158.cs
blobe0058b20db1e2439064a2edba72a72dd2e224cc9
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;