mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
310 B
Makefile
13 lines
310 B
Makefile
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail185.d(10): Error: static assert: "An error message
|
|
that spans multiple lines, and also contains such characters as a tab,
|
|
\ and "."
|
|
---
|
|
*/
|
|
|
|
static assert (false,
|
|
"An error message
|
|
\tthat spans multiple lines, and also contains such characters as a tab,
|
|
\\ and \".");
|