blob: a731494df15cc4d1cc27362511ccfe1928c4535a [file] [log] [blame]
package com.siyeh.ipp.parentheses;
class StringParentheses {
void foo() {
String s = "asdf" + (1 + 2 + "asdf"<caret>);
}
}