jdk-24/test/langtools/tools/javac/TextBlockIllegalEscape.java
2020-04-09 10:55:01 -03:00

15 lines
348 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8227640
* @summary Verify that illegal escapes in text blocks do not crash the javac.
* @compile/fail/ref=TextBlockIllegalEscape.out -XDrawDiagnostics TextBlockIllegalEscape.java
*/
public class TextBlockIllegalEscape {
static void test() {
EQ("""
\!
""", "");
}
}