/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/TextBlockIllegalEscape.java
14 строк
348 B
Jim Laskey
8241741: Implement Text Blocks as a standard feature in javac
09 апр 2020, 16:55
09 апр 2020, 16:55
ef8537e
Код
Авторство
О чём код?
/* * @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(""" \! """, ""); } }