//version(none)  // this is the original version line
version(all)     // the code is now enabled
void brokenFunc() {
    int x=123;  /* comment freely here */
    int y=321;  /+ to your heart's content +/
}
 
void workingFunc() {
    ...
}