java: don't generate uncompilable code in "Create subclass" intention (IDEA-327254)

GitOrigin-RevId: ef1718bee6d9d9ed9886b1a02cd9c6be4aee68f7
This commit is contained in:
Bas Leijdekkers
2023-08-02 15:17:42 +02:00
committed by intellij-monorepo-bot
parent ce61367403
commit d5e0643962
11 changed files with 91 additions and 30 deletions

View File

@@ -0,0 +1,11 @@
public class Test {
public class Inner {
Inner(String s) throws java.lang.IOException {}
}
public class InnerImpl extends Inner {
InnerImpl(String s) throws java.lang.IOException {
super(s);
}
}
}