int x = void;
if (x == void)
{
writeln("x not initialized");
}
else
{
// OK, use x
}
// Uninitialize x
x = void;
int x = void;
if (x == void)
{
writeln("x not initialized");
}
else
{
// OK, use x
}
// Uninitialize x
x = void;