hotspot/test/compiler/jsr292/methodHandleExceptions/p/E.java
author tpivovarova
Tue, 12 Jul 2016 18:24:48 +0300
changeset 40059 c2304140ed64
parent 21770 e8932d2fda2c
child 41705 332239c052cc
permissions -rw-r--r--
8132919: Put compiler tests in packages Reviewed-by: vlivanov, dpochepk Contributed-by: igor.ignatyev@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21770
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     1
/*
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     4
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     7
 * published by the Free Software Foundation.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     8
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    13
 * accompanied this code).
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    14
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    18
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    21
 * questions.
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    22
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    23
 */
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    24
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    25
package p;
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    26
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    27
/**
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    28
 * Test class -- implements I, which provides default for m, but this class
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    29
 * redeclares it so that all its non-overriding descendants should call its
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    30
 * method instead (with no error, assuming no descendant monkey business, which
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    31
 * of course is NOT usually the case in this test).
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    32
 *
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    33
 */
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 21770
diff changeset
    34
public abstract class E implements I {
21770
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    35
       public int m() {
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    36
           return 2;
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    37
       }
e8932d2fda2c 8016839: JSR292: AME instead of IAE when calling a method
drchase
parents:
diff changeset
    38
}