0N/A/*
2362N/A * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation.
0N/A *
2362N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
0N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
2362N/A */
2362N/A
0N/A/*
0N/A * @test
0N/A * @bug 6500343
0N/A * @summary compiler generates bad code when translating conditional expressions
0N/A * @author Maurizio Cimadamore
0N/A *
0N/A */
0N/A
0N/Apublic class T6500343a {
0N/A static class Base {}
0N/A static interface I {}
0N/A static class A1 extends Base implements I {}
0N/A static class A2 extends Base implements I {}
0N/A
0N/A static Object crash(I i, A1 a1, A2 a2, boolean b1, boolean b2) {
0N/A return b1 ? i : b2 ? a2 : a1;
0N/A // lub(I, lub(A1, A2)) ==> lub(I, Base&I) ==> I (doesn't compile on 1.4 ok >1.5)
0N/A }
0N/A
0N/A public static void main(String[] args) {
0N/A T6500343a.crash(new A1(), new A1(), new A2(), true, false);
0N/A T6500343a.crash(new A1(), new A1(), new A2(), false, true);
0N/A T6500343a.crash(new A1(), new A1(), new A2(), false, false);
0N/A T6500343a.crash(new A1(), new A1(), new A2(), true, true);
0N/A }
0N/A}
0N/A
0N/A