langtools/test/tools/javac/OverrideChecks/6199153/T6199153.java
author mcimadamore
Wed, 26 Oct 2016 15:41:25 +0100
changeset 41856 13a056e8f16e
parent 3766 7e2df99e9223
permissions -rw-r--r--
8168774: Polymorhic signature method check crashes javac Summary: Check for polysig method assumes arity is greater than zero Reviewed-by: vromero

/**
 * @test /nodynamiccopyright/
 * @bug 6199153
 * @summary Generic throws and overriding
 * @author  mcimadamore
 * @compile/fail/ref=T6199153.out -Xlint -Werror -XDrawDiagnostics T6199153.java
 */

import java.io.IOException;

class T6199153 {

    static class A {
        public <T extends IOException> void m() throws T {}
    }

    static class B extends A {
        public void m() throws IOException {}
    }
}