The label 'label' is a duplicate
A label with the same name appeared twice.
The following sample generates CS0140:
namespace x { public class a { public static void Main() { l1: int i = 0; l1: int j = 0; // CS0140, comment this line to resolve goto l1; } } }