mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00

* Fix Issue 24017 - Bypassing with doesn’t work * Update compiler/src/dmd/expressionsem.d Co-authored-by: Dennis <dkorpel@users.noreply.github.com> --------- Co-authored-by: Dennis <dkorpel@users.noreply.github.com>
11 lines
181 B
D
11 lines
181 B
D
// https://issues.dlang.org/show_bug.cgi?id=24017
|
|
|
|
// REQUIRED_ARGS: -debug
|
|
|
|
void writeln(string) {}
|
|
|
|
void main() nothrow
|
|
{
|
|
debug writeln("Hello");
|
|
debug "Hello".writeln;
|
|
}
|