/*
* @test /nodynamiccopyright/
* @bug 6182950
* @summary methods clash algorithm should not depend on return type
* @author mcimadamore
* @compile/fail/ref=T6182950b.out -XDrawDiagnostics T6182950b.java
*/
class T6182950b {
static class A {
}
static class B extends A {
}
}