mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
4 lines
92 B
D
4 lines
92 B
D
bool ok = false;
|
|
void f(){ ok = true; } void main() { bool b=true; b && f(); assert(ok); }
|
|
|