summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/joinDeclaration/beforePlusEq.java
blob: 5932445594120d161a4f622b6f13185714fef4b8 (plain)
1
2
3
4
5
6
7
// "Join declaration and assignment" "true"
class Test {
  {
    String ss = "hello";
    ss +<caret>= "world";
  }
}