2019-07-16 08:48:22 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 8227640
|
|
|
|
* @summary Verify that illegal escapes in text blocks do not crash the javac.
|
2020-04-09 13:55:01 +00:00
|
|
|
* @compile/fail/ref=TextBlockIllegalEscape.out -XDrawDiagnostics TextBlockIllegalEscape.java
|
2019-07-16 08:48:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
public class TextBlockIllegalEscape {
|
|
|
|
static void test() {
|
|
|
|
EQ("""
|
|
|
|
\!
|
|
|
|
""", "");
|
|
|
|
}
|
|
|
|
}
|