This label has not been referenced
A label was declared but never used.
The following sample generates CS0164:
namespace x { public class a { public int i = 0; public static void Main() { l1: int i = 0; // CS0164 i++; // the following line resolves this CS0164 // goto l1; } } }