test/tools/javac/multicatch/model/Model01.java

Thu, 25 Aug 2011 17:18:25 -0700

author
schien
date
Thu, 25 Aug 2011 17:18:25 -0700
changeset 1067
f497fac86cf9
parent 988
7ae6c0fd479b
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Added tag jdk8-b02 for changeset b3c059de2a61

mcimadamore@735 1 /*
jjg@988 2 * Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
mcimadamore@735 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@735 4 *
mcimadamore@735 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@735 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@735 7 * published by the Free Software Foundation.
mcimadamore@735 8 *
mcimadamore@735 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@735 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@735 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@735 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@735 13 * accompanied this code).
mcimadamore@735 14 *
mcimadamore@735 15 * You should have received a copy of the GNU General Public License version
mcimadamore@735 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@735 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@735 18 *
mcimadamore@735 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
mcimadamore@735 20 * or visit www.oracle.com if you need additional information or have any
mcimadamore@735 21 * questions.
mcimadamore@735 22 */
mcimadamore@735 23
mcimadamore@735 24 import javax.lang.model.element.ElementKind;
mcimadamore@735 25
mcimadamore@735 26 @Check
mcimadamore@735 27 class Test {
mcimadamore@735 28
mcimadamore@735 29 class A extends Exception {
mcimadamore@735 30 @Member(ElementKind.METHOD)
mcimadamore@735 31 public void m() {};
mcimadamore@735 32 @Member(ElementKind.FIELD)
mcimadamore@735 33 public Object f;
mcimadamore@735 34 }
mcimadamore@735 35
mcimadamore@735 36 class B1 extends A {}
mcimadamore@735 37 class B2 extends A {}
mcimadamore@735 38
mcimadamore@735 39 void test(){
mcimadamore@735 40 try {
mcimadamore@735 41 if (true)
mcimadamore@735 42 throw new B1();
mcimadamore@735 43 else
mcimadamore@735 44 throw new B2();
mcimadamore@735 45 }
jjg@988 46 catch(@UnionTypeInfo({"Test.B1", "Test.B2"}) B1 | B2 ex) { }
mcimadamore@735 47 }
mcimadamore@735 48 }

mercurial