[java-intentions] IDEA-165333 Add constructor parameter fix may create recursive constructor invocation

GitOrigin-RevId: 53be80dace37ccb9b9735d49d562b701404f995e
This commit is contained in:
Tagir Valeev
2022-07-07 16:47:10 +02:00
committed by intellij-monorepo-bot
parent 6913fc4aaa
commit a32aae2b9b
4 changed files with 28 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
// "Add 'boolean' as 1st parameter to constructor 'Main'" "false"
public class Main {
Main() {
this(<caret>true);
}
}