xxxxxxxxxx
void main() {
import std.stdio: writefln;
int x;
writefln("%X", &x); //ok
writefln!"%s"(&x); //ok
//writefln!"%X"(&x); //compile error
}