Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantEmbeddedExpression/beforeAll.java
Tagir Valeev 77d1d0ab2e [java-tests] Mock JDK 21 (downloaded from the repository); remove in-place mocks where possible
Part of IDEA-334171 Store MockJDK in artifact repository, rather than in Git

GitOrigin-RevId: 9c6214e3ead47cc164d20813f5a2b37136607213
2023-10-06 10:48:24 +00:00

20 lines
837 B
Java

// "Fix all 'Redundant embedded expression in string template' problems in file" "true"
class Test {
public static void main(String[] args) {
System.out.println(STR."hello|\{ }|world");
System.out.println(STR."hello|\{ <caret>null }|world");
System.out.println(STR."hello|\{""}|world");
System.out.println(STR."hello|\{"\r\n"}|world");
System.out.println(STR."hello|\{/*before*/"str"/*after*/
}|world \{1 + 1}");
System.out.println(STR."""
Hello!!! \{"""
World"""}""");
System.out.println(STR."hello|\{1}|world \{1 + 1}");
System.out.println(STR."hello|\{1000}|world \{1 + 1}");
System.out.println(STR."hello|\{1_000}|world \{1 + 1}");
System.out.println(STR."hello|\{1.0}|world \{1 + 1}");
System.out.println(STR."hello|\{1.0d}|world \{1 + 1}");
}
}