Having the function definition:
void f(int) { }
I want to define:
int a;
but if the function definition c
Use a template?
template< typename T > void f( T ) { T a; }