mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-17 20:11:25 +07:00
java: don't generate uncompilable code in "Create subclass" intention (IDEA-327254)
GitOrigin-RevId: ef1718bee6d9d9ed9886b1a02cd9c6be4aee68f7
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ce61367403
commit
d5e0643962
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user