mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
21 lines
500 B
D
21 lines
500 B
D
/*
|
|
https://issues.dlang.org/show_bug.cgi?id=24036
|
|
Issue 24036 - assert message in CTFE becomes `['m', 'e', 's', 's', 'a', 'g', 'e'][0..7]` if produced using std.format.format
|
|
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test24036.d(19): Error: message
|
|
fail_compilation/test24036.d(21): called from here: `(*function () pure nothrow @safe => 42)()`
|
|
---
|
|
*/
|
|
|
|
auto format()
|
|
{
|
|
return ['m', 'e', 's', 's', 'a', 'g', 'e'][0 .. 7];
|
|
}
|
|
|
|
immutable ctfeThing = ()
|
|
{
|
|
assert(0, format());
|
|
return 42;
|
|
}();
|