xxxxxxxxxx
import std.stdio;
void main()
{
int x = 1;
long y = 2;
switch(x, y) {
case x : writeln("1"); break;
// Error: variable x cannot be read at compile time
case y : writeln("2"); break;
default: break;
}
}