mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
152 B
D
10 lines
152 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag7998.d(10): Error: static assert: "abcxe"
|
|
---
|
|
*/
|
|
|
|
module diag7998;
|
|
|
|
static assert(false, "abc" ~['x'] ~ "e");
|