blob: 285197f55265544208ce98cb4838c616ae56201b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package x.y.z;
import c.MultipleThrowableClass;
import c.MultipleThrowableClass.ExceptionA;
import c.MultipleThrowableClass.ExceptionB;
public class testFMultiCatch {
public void m1(){
MultipleThrowableClass c = new MultipleThrowableClass();
int i = 0;
if (i == 0);
try {
c.m1();
i = c.f1;
} catch (ExceptionA | ExceptionB e) {
i = c.f1;
}
}
}