[interp] run regression with all combinations of available optimizations (#17644)
[mono-project.git] / mcs / errors / cs0158.cs
bloba09f17f836e89f104649d34a297a04ef15be40d1
1 // CS0158: 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;