Right now, I've been implementing classes separately, and I need
a dummy symbol. The best world is not even having a symbol but
having only its implementation, for example, I would like being
able to do that:
```d
void pragma(mangle, "test")(int a){
writeln(a);
}
```
Is it possible somehow to do that?