mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 11:23:14 +01:00
8 lines
133 B
D
8 lines
133 B
D
bool got() { return true; }
|
|
extern(C) int printf(char*, ...);
|
|
void main()
|
|
{
|
|
bool b = true && got();
|
|
printf("%d\n", b ? 1 : 0);
|
|
}
|