loci, a C++/D hybrid?

Kagamin via Digitalmars-d digitalmars-d at puremagic.com
Sat Feb 21 02:51:54 PST 2015


---
void (*f)(); // C
void (*)() f; // Loci

int (*f)(); // C
int (*)() f; // Loci

int (*f)(int, int); // C
*(int)(int, int) f; // Loci
---

Ehh? Why the last declaration is so different?


More information about the Digitalmars-d mailing list