xxxxxxxxxx
import std.stdio;
@safe:
const x = 42;
int* y = cast(int*) &x;
void main()
{
*y = 7;
writeln(x); // prints 42
}