blob: 75f8a8ce12f8a77fdaf64e6f8093656c62c97d2d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
public class LabelTest {
public static void main(String[] args) {
label1: {
System.out.println("Label 1");
}
label2: {
label3:
lable4: System.out.println("Label 2");
}
}
}