int main() {
auto f = (bool = false) {};
f();
return 0;
}
I can't compile this code on
DMD32 D Compiler v2.062
On windows. It says to me:
Error: expected 1 function arguments, not 0
On linux it seems to work(http://ideone.com/fsKYWR).